mirror of https://git.rancher.io/charts
29 lines
958 B
YAML
29 lines
958 B
YAML
---
|
|
apiVersion: batch/v1
|
|
kind: Job
|
|
metadata:
|
|
name: patch-fleet-sa
|
|
annotations:
|
|
"helm.sh/hook": post-install, post-upgrade
|
|
"helm.sh/hook-delete-policy": hook-succeeded, before-hook-creation
|
|
spec:
|
|
template:
|
|
spec:
|
|
serviceAccountName: fleet-agent
|
|
restartPolicy: Never
|
|
containers:
|
|
- name: sa
|
|
image: "{{ template "system_default_registry" . }}{{ .Values.global.kubectl.repository }}:{{ .Values.global.kubectl.tag }}"
|
|
imagePullPolicy: {{ .Values.global.imagePullPolicy }}
|
|
command: ["kubectl", "patch", "serviceaccount", "default", "-p", "{\"automountServiceAccountToken\": false}"]
|
|
args: ["-n", {{ .Values.internal.systemNamespace }}]
|
|
{{- with .Values.kubectl.tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.kubectl.nodeSelector }}
|
|
nodeSelector:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
backoffLimit: 1
|