From 498e2c663165ab8c445c3751a37192c25eb80cc8 Mon Sep 17 00:00:00 2001 From: Conan Scott Date: Tue, 30 Dec 2025 20:53:38 +1100 Subject: [PATCH] kubetctl to oc --- manifests/deploy.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) mode change 100644 => 100755 manifests/deploy.sh diff --git a/manifests/deploy.sh b/manifests/deploy.sh old mode 100644 new mode 100755 index c0cc05c..bfaa54c --- a/manifests/deploy.sh +++ b/manifests/deploy.sh @@ -1,12 +1,12 @@ -k apply -f namespace.yaml -k apply -f postgres-claim0-persistentvolumeclaim.yaml -k apply -f postgres-configmap.yaml -k apply -f postgres-secret.yaml -k apply -f postgres-deployment.yaml -k apply -f postgres-service.yaml +oc apply -f namespace.yaml +oc apply -f postgres-claim0-persistentvolumeclaim.yaml +oc apply -f postgres-configmap.yaml +oc apply -f postgres-secret.yaml +oc apply -f postgres-deployment.yaml +oc apply -f postgres-service.yaml ./scc-updates.sh -k apply -f n8n-pvc.yaml -k apply -f n8n-service.yaml -k apply -f n8n-deployment.yaml -k apply -f route.yaml +oc apply -f n8n-pvc.yaml +oc apply -f n8n-service.yaml +oc apply -f n8n-deployment.yaml +oc apply -f route.yaml echo n8n Deployed!