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
2 changes: 1 addition & 1 deletion charts/negsoft-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
9 changes: 0 additions & 9 deletions charts/negsoft-operator/templates/cronjob_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,16 @@ spec:
{{- toYaml .Values.securityContext | nindent 16 }}
image: "" # is overridden by operator
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /var/run/secret/cloud.google.com/service-account.json
volumeMounts:
- name: config
mountPath: /etc/nx
readOnly: true
- name: gcp-service-account
mountPath: /var/run/secret/cloud.google.com
readOnly: true
- name: files
mountPath: /mnt/files
volumes:
- name: config
configMap:
name: "" # is overridden by operator
- name: gcp-service-account
secret:
secretName: "" # is overridden by operator
- name: files
emptyDir: {} # is overridden by operator
restartPolicy: OnFailure
Expand Down
Loading