mirror of
https://github.com/rancher/rke.git
synced 2025-09-17 07:30:01 +00:00
Remove ingress controller when disabled
This commit is contained in:
committed by
Alena Prokharchyk
parent
af77619859
commit
241f7857d6
57
templates/addonjob.go
Normal file
57
templates/addonjob.go
Normal file
@@ -0,0 +1,57 @@
|
||||
package templates
|
||||
|
||||
const AddonJobTemplate = `
|
||||
{{- $addonName := .AddonName }}
|
||||
{{- $nodeName := .NodeName }}
|
||||
{{- $image := .Image }}
|
||||
apiVersion: batch/v1
|
||||
kind: Job
|
||||
metadata:
|
||||
{{- if eq .DeleteJob "true" }}
|
||||
name: {{$addonName}}-delete-job
|
||||
{{- else }}
|
||||
name: {{$addonName}}-deploy-job
|
||||
{{- end }}
|
||||
namespace: kube-system
|
||||
spec:
|
||||
backoffLimit: 10
|
||||
template:
|
||||
metadata:
|
||||
name: rke-deploy
|
||||
spec:
|
||||
tolerations:
|
||||
- key: node-role.kubernetes.io/controlplane
|
||||
operator: Exists
|
||||
effect: NoSchedule
|
||||
- key: node-role.kubernetes.io/etcd
|
||||
operator: Exists
|
||||
effect: NoExecute
|
||||
hostNetwork: true
|
||||
serviceAccountName: rke-job-deployer
|
||||
nodeName: {{$nodeName}}
|
||||
containers:
|
||||
{{- if eq .DeleteJob "true" }}
|
||||
- name: {{$addonName}}-delete-pod
|
||||
{{- else }}
|
||||
- name: {{$addonName}}-pod
|
||||
{{- end }}
|
||||
image: {{$image}}
|
||||
{{- if eq .DeleteJob "true" }}
|
||||
command: ["/bin/sh"]
|
||||
args: ["-c" ,"kubectl get --ignore-not-found=true -f /etc/config/{{$addonName}}.yaml -o name | xargs kubectl delete --ignore-not-found=true"]
|
||||
{{- else }}
|
||||
command: [ "kubectl", "apply", "-f" , "/etc/config/{{$addonName}}.yaml"]
|
||||
{{- end }}
|
||||
volumeMounts:
|
||||
- name: config-volume
|
||||
mountPath: /etc/config
|
||||
volumes:
|
||||
- name: config-volume
|
||||
configMap:
|
||||
# Provide the name of the ConfigMap containing the files you want
|
||||
# to add to the container
|
||||
name: {{$addonName}}
|
||||
items:
|
||||
- key: {{$addonName}}
|
||||
path: {{$addonName}}.yaml
|
||||
restartPolicy: Never`
|
Reference in New Issue
Block a user