Skip to content
Snippets Groups Projects
Commit ff738b7b authored by Sagar Arora's avatar Sagar Arora :bicyclist_tone1:
Browse files

(fix): Remove sudo privilege from helm-charts

- Change security context to anyuid
- Changed from deployment to job, now the pods will be in completed
parent 1336a410
No related branches found
No related tags found
No related merge requests found
Showing
with 80 additions and 208 deletions
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-nr-pbchsim-273rb.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-nr-pbchsim-273rb.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-nr-pbchsim-273rb.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "nr_pbchsim.273rb" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "nr_pbchsim.273rb" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-nr-prachsim.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-nr-prachsim.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-nr-prachsim.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "nr_prachsim" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "nr_prachsim" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-nr-pucchsim.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-nr-pucchsim.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-nr-pucchsim.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "nr_pucchsim" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "nr_pucchsim" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-nr-ulschsim.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-nr-ulschsim.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-nr-ulschsim.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulschsim" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulschsim" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-nr-ulsim-3gpp.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-nr-ulsim-3gpp.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-nr-ulsim-3gpp.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulsim.3gpp" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulsim.3gpp" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-nr-ulsim-mimo.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-nr-ulsim-mimo.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-nr-ulsim-mimo.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulsim.mimo" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulsim.mimo" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-nr-ulsim-misc.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-nr-ulsim-misc.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-nr-ulsim-misc.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulsim.misc" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulsim.misc" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-nr-ulsim-sc-fdma.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-nr-ulsim-sc-fdma.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-nr-ulsim-sc-fdma.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -37,9 +26,9 @@ spec: ...@@ -37,9 +26,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulsim.sc-fdma" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "nr_ulsim.sc-fdma" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-polartest.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-polartest.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-polartest.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "polartest" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "polartest" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
...@@ -27,10 +27,10 @@ podSecurityContext: ...@@ -27,10 +27,10 @@ podSecurityContext:
runAsGroup: 0 runAsGroup: 0
securityContext: securityContext:
privileged: true privileged: false
capabilities: # capabilities:
add: # add:
- SYS_CAP_PTRACE # - SYS_CAP_PTRACE
# drop: # drop:
# - ALL # - ALL
# readOnlyRootFilesystem: true # readOnlyRootFilesystem: true
......
apiVersion: apps/v1 apiVersion: batch/v1
kind: Deployment kind: Job
metadata: metadata:
name: {{ .Chart.Name }} name: {{ .Chart.Name }}
labels:
{{- include "oai-smallblocktest.labels" . | nindent 4 }}
spec: spec:
replicas: {{ .Values.replicaCount }}
selector:
matchLabels:
{{- include "oai-smallblocktest.selectorLabels" . | nindent 6 }}
strategy:
type: Recreate
template: template:
metadata:
labels:
{{- include "oai-smallblocktest.selectorLabels" . | nindent 8 }}
spec: spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
...@@ -28,8 +17,6 @@ spec: ...@@ -28,8 +17,6 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
ports:
- containerPort: 80
env: env:
- name: OPENAIR_DIR - name: OPENAIR_DIR
value: /opt/oai-physim value: /opt/oai-physim
...@@ -37,9 +24,9 @@ spec: ...@@ -37,9 +24,9 @@ spec:
args: args:
- > - >
cmake_targets/autotests/run_exec_autotests.bash -g "smallblocktest" -d bin/ && cmake_targets/autotests/run_exec_autotests.bash -g "smallblocktest" -d bin/ &&
echo "FINISHED" && sleep infinity echo "FINISHED"
dnsPolicy: ClusterFirst dnsPolicy: ClusterFirst
restartPolicy: Always restartPolicy: Never
schedulerName: default-scheduler schedulerName: default-scheduler
serviceAccountName: {{ .Values.global.serviceAccountName }} serviceAccountName: {{ .Values.global.serviceAccountName }}
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment