Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
c5b741df2a
commit
1df7ee3710
|
@ -2,6 +2,20 @@
|
|||
|
||||
|
||||
|
||||
## [docker-compose-2.1.0](https://github.com/truecharts/charts/compare/docker-compose-2.0.52...docker-compose-2.1.0) (2022-10-16)
|
||||
|
||||
### Chore
|
||||
|
||||
- Auto-update chart README [skip ci]
|
||||
|
||||
### Fix
|
||||
|
||||
- remove /mnt and /root ([#4115](https://github.com/truecharts/charts/issues/4115))
|
||||
- remove /mnt for bluefin
|
||||
|
||||
|
||||
|
||||
|
||||
## [docker-compose-2.0.52](https://github.com/truecharts/charts/compare/docker-compose-2.0.51...docker-compose-2.0.52) (2022-10-14)
|
||||
|
||||
### Chore
|
||||
|
@ -83,17 +97,3 @@
|
|||
### Chore
|
||||
|
||||
- Auto-update chart README [skip ci]
|
||||
- update helm general non-major ([#3918](https://github.com/truecharts/charts/issues/3918))
|
||||
|
||||
|
||||
|
||||
|
||||
## [docker-compose-2.0.45](https://github.com/truecharts/charts/compare/docker-compose-2.0.44...docker-compose-2.0.45) (2022-09-25)
|
||||
|
||||
### Chore
|
||||
|
||||
- Auto-update chart README [skip ci]
|
||||
- update helm general non-major ([#3898](https://github.com/truecharts/charts/issues/3898))
|
||||
|
||||
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://library-charts.truecharts.org
|
||||
version: 10.7.0
|
||||
digest: sha256:a792707805bae88e565e13c3319a32f94333d185590628b1cbef5c9cbe126a6a
|
||||
generated: "2022-10-15T00:16:55.473786899Z"
|
||||
generated: "2022-10-16T19:43:57.257472966Z"
|
|
@ -21,7 +21,7 @@ sources:
|
|||
- https://github.com/truecharts/charts/tree/master/charts/stable/docker-compose
|
||||
- https://hub.docker.com/_/docker
|
||||
type: application
|
||||
version: 2.0.52
|
||||
version: 2.1.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- docker
|
|
@ -46,26 +46,26 @@ service:
|
|||
type: HTTPS
|
||||
|
||||
env:
|
||||
DOCKER_TLS_CERTDIR: "/certs"
|
||||
DOCKER_TLS_CERTDIR: /certs
|
||||
COMPOSE_FILE: ""
|
||||
|
||||
lifecycle:
|
||||
postStart:
|
||||
exec:
|
||||
command:
|
||||
- "/bin/bash"
|
||||
- "-c"
|
||||
- /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;
|
||||
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;
|
||||
echo "COMPOSE_FILE not set, not auto-loading compose-file" >> /proc/1/fd/1;
|
||||
fi
|
||||
probes:
|
||||
liveness:
|
||||
|
@ -81,31 +81,17 @@ probes:
|
|||
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
|
||||
docker-certs-ca:
|
||||
enabled: true
|
||||
mountPath: "/config"
|
||||
mountPath: /config
|
||||
|
||||
volumeClaimTemplates:
|
||||
docker-certs-client:
|
||||
enabled: true
|
||||
mountPath: "/certs/client"
|
||||
mountPath: /certs/client
|
||||
docker:
|
||||
enabled: true
|
||||
mountPath: "/var/lib/docker"
|
||||
mountPath: /var/lib/docker
|
||||
|
||||
portal:
|
||||
enabled: false
|
|
@ -158,17 +158,18 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
- variable: env
|
||||
group: "Container Configuration"
|
||||
label: "Image Environment"
|
||||
group: Container Configuration
|
||||
label: Image Environment
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: COMPOSE_FILE
|
||||
label: "COMPOSE_FILE"
|
||||
description: "Path on the host of the composefile you want to load. Supported are paths inside /mnt, /root and /cluster"
|
||||
label: Docker Compose File
|
||||
description: Path on the host of the compose file you want to load. You MUST mount the storage yourself
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: TZ
|
||||
label: Timezone
|
||||
group: Container Configuration
|
||||
|
@ -982,22 +983,22 @@ questions:
|
|||
type: dict
|
||||
attrs:
|
||||
- variable: privileged
|
||||
label: "Privileged mode"
|
||||
label: Privileged mode
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: readOnlyRootFilesystem
|
||||
label: "ReadOnly Root Filesystem"
|
||||
label: ReadOnly Root Filesystem
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: allowPrivilegeEscalation
|
||||
label: "Allow Privilege Escalation"
|
||||
label: Allow Privilege Escalation
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: runAsNonRoot
|
||||
label: "runAsNonRoot"
|
||||
label: runAsNonRoot
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
|
@ -1035,20 +1036,20 @@ questions:
|
|||
type: dict
|
||||
attrs:
|
||||
- variable: runAsUser
|
||||
label: "runAsUser"
|
||||
description: "The UserID of the user running the application"
|
||||
label: runAsUser
|
||||
description: The UserID of the user running the application
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
- variable: runAsGroup
|
||||
label: "runAsGroup"
|
||||
description: "The groupID this App of the user running the application"
|
||||
label: runAsGroup
|
||||
description: The groupID this App of the user running the application
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
||||
- variable: fsGroup
|
||||
label: "fsGroup"
|
||||
description: "The group that should own ALL storage."
|
||||
label: fsGroup
|
||||
description: The group that should own ALL storage.
|
||||
schema:
|
||||
type: int
|
||||
default: 0
|
Loading…
Reference in New Issue