mirror of https://git.rancher.io/charts
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
|
apiVersion: batch/v1
|
||
|
kind: Job
|
||
|
metadata:
|
||
|
annotations:
|
||
|
"helm.sh/hook": pre-delete
|
||
|
"helm.sh/hook-delete-policy": hook-succeeded
|
||
|
name: longhorn-uninstall
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels: {{- include "longhorn.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
activeDeadlineSeconds: 900
|
||
|
backoffLimit: 1
|
||
|
template:
|
||
|
metadata:
|
||
|
name: longhorn-uninstall
|
||
|
labels: {{- include "longhorn.labels" . | nindent 8 }}
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: longhorn-uninstall
|
||
|
image: {{ template "system_default_registry" . }}{{ .Values.image.longhorn.manager.repository }}:{{ .Values.image.longhorn.manager.tag }}
|
||
|
imagePullPolicy: Always
|
||
|
command:
|
||
|
- longhorn-manager
|
||
|
- uninstall
|
||
|
- --force
|
||
|
env:
|
||
|
- name: LONGHORN_NAMESPACE
|
||
|
valueFrom:
|
||
|
fieldRef:
|
||
|
fieldPath: metadata.namespace
|
||
|
restartPolicy: OnFailure
|
||
|
{{- if .Values.defaultSettings.registrySecret }}
|
||
|
imagePullSecrets:
|
||
|
- name: {{ .Values.defaultSettings.registrySecret }}
|
||
|
{{- end }}
|
||
|
serviceAccountName: longhorn-service-account
|