Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-11-24 19:10:57 +00:00
parent cc3589eb33
commit 44a6b12e7e
14 changed files with 15 additions and 40 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="promtail-0.0.4"></a>
### [promtail-0.0.4](https://github.com/truecharts/apps/compare/promtail-0.0.3...promtail-0.0.4) (2021-11-24)
#### Fix
* fix storage issues with promtail
<a name="promtail-0.0.3"></a>
### [promtail-0.0.3](https://github.com/truecharts/apps/compare/promtail-0.0.2...promtail-0.0.3) (2021-11-24)

View File

@ -3,4 +3,4 @@ dependencies:
repository: https://truecharts.org
version: 8.9.3
digest: sha256:8e3b075bc94570b49db18d1ea9431f95ed06504fb372ee04f43c667c784d7b14
generated: "2021-11-24T17:59:20.351152687Z"
generated: "2021-11-24T19:08:34.715097484Z"

View File

@ -22,7 +22,7 @@ sources:
- https://grafana.com/oss/loki/
- https://grafana.com/docs/loki/latest/
type: application
version: 0.0.3
version: 0.0.4
annotations:
truecharts.org/catagories: |
- metrics

View File

@ -24,29 +24,15 @@ You will, however, be able to use all values referenced in the common chart here
| envValueFrom.HOSTNAME.fieldRef.fieldPath | string | `"spec.nodeName"` | |
| image.repository | string | `"grafana/promtail"` | |
| image.tag | string | `"v2.3.0@sha256:1e8554cdac6681f877d10a2a383d8fcc2f475188914282ccf86722c2e23c501c"` | |
| initContainers.link-logs.command[0] | string | `"sh"` | |
| initContainers.link-logs.command[1] | string | `"-c"` | |
| initContainers.link-logs.command[2] | string | `"mkdir -p /var/lib/docker/link && ln -sf $(cat /etc/docker/daemon.json | jq -r '.\"data-root\"')/containers/ /var/lib/docker/link/ || echo \"cannot symlink container logs\""` | |
| initContainers.link-logs.image | string | `"{{ .Values.alpineImage.repository}}:v3.14.2@sha256:4095394abbae907e94b1f2fd2e2de6c4f201a5b9704573243ca8eb16db8cdb7c"` | |
| initContainers.link-logs.imagePullPolicy | string | `"IfNotPresent"` | |
| initContainers.link-logs.volumeMounts[0].mountPath | string | `"/etc/docker/"` | |
| initContainers.link-logs.volumeMounts[0].name | string | `"docker"` | |
| initContainers.link-logs.volumeMounts[1].mountPath | string | `"/var/lib/docker/link/containers"` | |
| initContainers.link-logs.volumeMounts[1].name | string | `"containers"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/etc/promtail"` | |
| persistence.config.objectName | string | `"promtail-config"` | |
| persistence.config.type | string | `"secret"` | |
| persistence.containers.enabled | bool | `true` | |
| persistence.containers.hostPath | string | `"/var/lib/docker/link/containers"` | |
| persistence.containers.mountPath | string | `"/var/lib/docker/link/containers"` | |
| persistence.containers.hostPath | string | `"/mnt"` | |
| persistence.containers.mountPath | string | `"/mnt"` | |
| persistence.containers.readOnly | bool | `true` | |
| persistence.containers.type | string | `"hostPath"` | |
| persistence.docker.enabled | bool | `true` | |
| persistence.docker.hostPath | string | `"/etc/docker/"` | |
| persistence.docker.mountPath | string | `"/etc/docker/"` | |
| persistence.docker.readOnly | bool | `true` | |
| persistence.docker.type | string | `"hostPath"` | |
| persistence.pods.enabled | bool | `true` | |
| persistence.pods.hostPath | string | `"/var/log/pods"` | |
| persistence.pods.mountPath | string | `"/var/log/pods"` | |

View File

@ -31,20 +31,6 @@ probes:
startup:
path: "/ready"
initContainers:
link-logs:
image: "{{ .Values.alpineImage.repository}}:v3.14.2@sha256:4095394abbae907e94b1f2fd2e2de6c4f201a5b9704573243ca8eb16db8cdb7c"
command:
- "sh"
- "-c"
- mkdir -p /var/lib/docker/link && ln -sf $(cat /etc/docker/daemon.json | jq -r '."data-root"')/containers/ /var/lib/docker/link/ || echo "cannot symlink container logs"
imagePullPolicy: IfNotPresent
volumeMounts:
- mountPath: /etc/docker/
name: docker
- mountPath: /var/lib/docker/link/containers
name: containers
# -- The security context for pods
podSecurityContext:
runAsUser: 0
@ -60,17 +46,11 @@ securityContext:
runAsNonRoot: false
persistence:
docker:
enabled: true
type: hostPath
mountPath: /etc/docker/
hostPath: /etc/docker/
readOnly: true
containers:
enabled: true
type: hostPath
mountPath: /var/lib/docker/link/containers
hostPath: /var/lib/docker/link/containers
mountPath: /mnt
hostPath: /mnt
readOnly: true
pods:
enabled: true