Skip to content
Merged
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
9 changes: 8 additions & 1 deletion charts/guac/templates/oci-collector-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ spec:
- name: guac-config
mountPath: {{ .Values.guac.guacImage.workingDir }}
readOnly: true
{{- with .Values.guac.ociCollector.extraVolumeMounts }}
{{- toYaml . | nindent 10 }}
{{- end }}

{{- if or .Values.guac.common.env .Values.guac.ociCollector.env }}
env:
Expand All @@ -70,6 +73,10 @@ spec:
- name: guac-config
configMap:
name: guac-cm
{{- with .Values.guac.ociCollector.extraVolumes }}
{{- toYaml . | nindent 8 }}
{{- end }}

{{- if .Values.guac.ociCollector.nodeSelector }}
nodeSelector:
{{ toYaml .Values.guac.ociCollector.nodeSelector | indent 8 }}
Expand All @@ -85,5 +92,5 @@ spec:
{{- end }}
{{- end }}


{{- end }}

12 changes: 12 additions & 0 deletions charts/guac/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ imagePullSecrets:
## @param guac.ociCollector.serviceAccount.create - whether to create OCI Collector service account
## @param guac.ociCollector.serviceAccount.annotations - OCI Collector service account annotations
## @param guac.ociCollector.resources - [map] resource requests or limits of the ociCollector deployment
## @param guac.ociCollector.extraVolumeMounts - [map] extra volume mounts for the ociCollector deployment
## @param guac.ociCollector.extraVolumes - [map] extra volumes for the ociCollector deployment
## @param guac.depsDevCollector.enabled String Whether to deploy Deps.Dev Collector
## @param guac.depsDevCollector.name String Name of the Deps.Dev Collector component.
## @param guac.depsDevCollector.annotations.reloader.stakater.com/auto [string] Boolean for deploying [stakater/Reloader] (https://github.com/stakater/Reloader)
Expand Down Expand Up @@ -213,6 +215,16 @@ guac:
# requests:
# cpu: "0.25"
# memory: "0.5G"
extraVolumeMounts: []
# Example: mount a secret read-only
# - name: reg-creds
# mountPath: /var/run/registry-creds
# readOnly: true
extraVolumes: []
# - name: reg-creds
# secret:
# secretName: my-registry-creds
# optional: false

depsDevCollector:
enabled: true
Expand Down
Loading