Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions third_party/vendir/charts/coder-logstream-kube/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: v0.0.13
appVersion: v0.0.15
description: Stream Kubernetes Pod events to the Coder startup logs
home: https://github.com/coder/coder-logstream-kube
icon: https://helm.coder.com/coder_logo_black.png
Expand All @@ -15,4 +15,4 @@ name: coder-logstream-kube
sources:
- https://github.com/coder/coder-logstream-kube/tree/main
type: application
version: v0.0.13
version: v0.0.15
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
- apiGroups: [""]
resources: ["pods", "events"]
verbs: ["get", "watch", "list"]
- apiGroups: [""]
resources: ["secrets"]
verbs: ["get"]
- apiGroups: ["apps"]
resources: ["replicasets", "events"]
verbs: ["get", "watch", "list"]
Expand Down Expand Up @@ -98,6 +101,10 @@ spec:
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.podSecurityContext }}
podSecurityContext:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: coder-logstream-kube
image: "{{ .Values.image.repo }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
Expand Down
12 changes: 10 additions & 2 deletions third_party/vendir/charts/coder-logstream-kube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,20 @@ labels: {}

# securityContext -- Container-level security context
# See: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
securityContext: {}
# allowPrivilegeEscalation: false
securityContext:
runAsNonRoot: true
runAsUser: 65532
runAsGroup: 65532
allowPrivilegeEscalation: false
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# seccompProfile:
# type: RuntimeDefault

podSecurityContext: {}
# Optional, only if your cluster requires group ownership for mounted volumes:
# podSecurityContext:
# fsGroup: 65532
4 changes: 2 additions & 2 deletions third_party/vendir/vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ directories:
path: charts/coder
- contents:
- helmChart:
appVersion: v0.0.13
version: v0.0.13
appVersion: v0.0.15
version: v0.0.15
path: .
path: charts/coder-logstream-kube
- contents:
Expand Down
2 changes: 1 addition & 1 deletion third_party/vendir/vendir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ directories:
- path: .
helmChart:
name: coder-logstream-kube
version: 0.0.13
version: v0.0.15
repository:
url: https://helm.coder.com/logstream-kube
- path: charts/external-secrets
Expand Down
Loading