catalog/stable/docker-compose/2.0.43/ix_values.yaml

119 lines
2.6 KiB
YAML

image:
repository: tccr.io/truecharts/docker-in-docker
pullPolicy: IfNotPresent
tag: 20.10.18@sha256:0133b324afbe393181d65e0635f709dda9ed8ebe4f8aa8a2367277ac76a2077e
controller:
# -- Set the controller type.
# Valid options are deployment, daemonset or statefulset
type: statefulset
# -- Number of desired pods
replicas: 1
# -- Set the controller upgrade strategy
# For Deployments, valid values are Recreate (default) and RollingUpdate.
# For StatefulSets, valid values are OnDelete and RollingUpdate (default).
# DaemonSets ignore this.
strategy: RollingUpdate
rollingUpdate:
# -- Set deployment RollingUpdate max unavailable
unavailable: 1
# -- Set deployment RollingUpdate max surge
surge:
# -- Set statefulset RollingUpdate partition
partition:
# -- ReplicaSet revision history limit
revisionHistoryLimit: 3
securityContext:
privileged: true
readOnlyRootFilesystem: false
allowPrivilegeEscalation: true
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
fsGroup: 0
hostNetwork: true
service:
main:
enabled: true
ports:
main:
port: 2376
type: HTTPS
env:
DOCKER_TLS_CERTDIR: "/certs"
COMPOSE_FILE: ""
lifecycle:
postStart:
exec:
command:
- "/bin/bash"
- "-c"
- |
if [ "${COMPOSE_FILE}" ]; then
counter=0;
while ! docker info > /dev/null 2>&1 && [[ ${counter} -lt 10 ]]; do
echo "docker not running yet. Waiting..." >> /proc/1/fd/1;
sleep 5;
counter=$((counter+1));
done
docker-compose -f "${COMPOSE_FILE}" up -d && echo "Loading COMPOSE_FILE at location ${COMPOSE_FILE}" >> /proc/1/fd/1;
else
echo "COMPOSE_FILE not set, not auto-loading compose-file" >> /proc/1/fd/1;
fi
probes:
liveness:
spec:
initialDelaySeconds: 30
readiness:
spec:
initialDelaySeconds: 30
startup:
spec:
initialDelaySeconds: 30
persistence:
varrun:
enabled: false
mnt:
enabled: true
type: hostPath
hostPath: /mnt
mountPath: /mnt
hostPathType: ""
readOnly: false
root:
enabled: true
type: hostPath
hostPath: /root
mountPath: /root
hostPathType: ""
readOnly: false
cluster:
enabled: true
type: hostPath
hostPath: /cluster
mountPath: /cluster
hostPathType: ""
readOnly: false
docker-certs-ca:
enabled: true
mountPath: "/config"
volumeClaimTemplates:
docker-certs-client:
enabled: true
mountPath: "/certs/client"
docker:
enabled: true
mountPath: "/var/lib/docker"
portal:
enabled: false