Update license references
[nonrtric.git] / test / simulator-group / pvc-cleaner / pvc-cleaner.yaml
1 #  ============LICENSE_START=======================================================
2 #  Copyright (C) 2020-2022 Nordix 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 #  SPDX-License-Identifier: Apache-2.0
17 #  ============LICENSE_END=========================================================
18 apiVersion: v1
19 kind: Pod
20 metadata:
21   name: pvc-cleaner
22   namespace: $PVC_CLEANER_NAMESPACE
23   labels:
24     run: $PVC_CLEANER_APP_NAME
25     autotest: PVCCLEANER
26 spec:
27   restartPolicy: Never
28   containers:
29   - name: pvc-cleaner
30     image: $PVC_CLEANER_IMAGE
31     securityContext:
32       runAsUser: 0
33     command: ["/bin/sh","-c"]
34     args: ["rm -rf $PVC_CLEANER_RM_PATH/* ; if [ $? -ne 0 ]; then echo 'Delete failure: '$PVC_CLEANER_RM_PATH; else echo 'Delete OK: '$PVC_CLEANER_RM_PATH; fi"]
35     volumeMounts:
36     - mountPath: $PVC_CLEANER_RM_PATH
37       name: pvc-cleaner-m-vol
38   volumes:
39   - name: pvc-cleaner-m-vol
40     persistentVolumeClaim:
41       claimName: $PVC_CLEANER_CLAIMNAME