We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7976cc commit 43e3273Copy full SHA for 43e3273
azure/k8s-vault-azure-start.sh
@@ -35,7 +35,7 @@ export AZ_KEY_VAULT_NAME="$(terraform output -raw vault_name)"
35
az aks get-credentials --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME
36
37
echo "Setting up workspace PSA to restricted for default"
38
-kubectl apply -f ../k8s/workspace-psa.yml
+kubectl apply -f k8s/workspace-psa.yml
39
40
kubectl get configmaps | grep 'secrets-file' &>/dev/null
41
if [ $? == 0 ]; then
azure/k8s/workspace-psa.yml
@@ -0,0 +1,7 @@
1
+apiVersion: v1
2
+kind: Namespace
3
+metadata:
4
+ name: default
5
+ labels:
6
+ pod-security.kubernetes.io/audit: restricted
7
+ kubernetes.io/metadata.name: default
0 commit comments