Hyunsun Moon | ed19c09 | 2019-07-10 15:24:45 -0600 | [diff] [blame] | 1 | {{/* |
| 2 | Copyright 2019-present Open Networking Foundation |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */}} |
| 16 | |
Hyunsun Moon | 43eadcc | 2019-08-20 16:16:08 -0600 | [diff] [blame] | 17 | {{- $name := .Values.config.ue.name }} |
Hyunsun Moon | ed19c09 | 2019-07-10 15:24:45 -0600 | [diff] [blame] | 18 | --- |
| 19 | apiVersion: batch/v1 |
| 20 | kind: Job |
| 21 | metadata: |
| 22 | name: {{ $name }}-teardown-if |
| 23 | labels: |
| 24 | app: {{ $name }} |
| 25 | annotations: |
| 26 | "helm.sh/hook": post-delete |
| 27 | "helm.sh/hook-delete-policy": hook-succeeded |
| 28 | spec: |
| 29 | template: |
| 30 | metadata: |
| 31 | labels: |
| 32 | app: {{ $name }} |
| 33 | spec: |
Hyunsun Moon | 43eadcc | 2019-08-20 16:16:08 -0600 | [diff] [blame] | 34 | {{- if .Values.nodeSelectors.enabled }} |
| 35 | nodeSelector: |
| 36 | {{ .Values.nodeSelectors.ue.label }}: {{ .Values.nodeSelectors.ue.value }} |
| 37 | {{- end }} |
Hyunsun Moon | ed19c09 | 2019-07-10 15:24:45 -0600 | [diff] [blame] | 38 | restartPolicy: Never |
| 39 | containers: |
| 40 | - name: ue-teardown-if-job |
| 41 | image: {{ .Values.images.tags.ue | quote }} |
| 42 | securityContext: |
| 43 | privileged: true |
| 44 | runAsUser: 0 |
| 45 | command: ["bash", "-xc"] |
| 46 | args: |
| 47 | - if chroot /mnt/host-rootfs lsmod | grep -q ue_ip;then chroot /mnt/host-rootfs rmmod ue_ip;fi |
| 48 | volumeMounts: |
| 49 | - name: host-rootfs |
| 50 | mountPath: /mnt/host-rootfs |
| 51 | volumes: |
| 52 | - name: host-rootfs |
| 53 | hostPath: |
| 54 | path: / |