2 Commits
Author SHA1 Message Date
dutchie031 898866c773 updated priviliged folders 2026-07-30 13:40:04 +02:00
dutchie031 3b4215ef62 removed unnecesarry kubectl installation 2026-07-30 13:20:30 +02:00
2 changed files with 10 additions and 6 deletions
-6
View File
@@ -98,12 +98,6 @@ jobs:
version: 'latest' version: 'latest'
id: install id: install
- name: Setup kubectl
uses: azure/setup-kubectl@v4
with:
version: 'latest'
id: install
- name: Set up Kubeconfig - name: Set up Kubeconfig
run: | run: |
mkdir -p $HOME/.kube mkdir -p $HOME/.kube
+10
View File
@@ -26,9 +26,19 @@ spec:
image: {{ .Values.image.repository }}:{{ .Values.image.tag }} image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
ports: ports:
- containerPort: {{ .Values.ports.containerPort }} - containerPort: {{ .Values.ports.containerPort }}
volumeMounts:
- name: cache
mountPath: /var/cache/nginx
- name: run
mountPath: /var/run
securityContext: securityContext:
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities: capabilities:
drop: drop:
- ALL - ALL
volumes:
- name: cache
emptyDir: {}
- name: run
emptyDir: {}