File tree Expand file tree Collapse file tree 5 files changed +5
-4
lines changed
Expand file tree Collapse file tree 5 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -8,4 +8,3 @@ immutable: false
88kind : ConfigMap
99metadata :
1010 name : x-beeai-agent-configmap
11- namespace : jotnar-prod
Original file line number Diff line number Diff line change 22
33set -e
44
5+ # TODO: This should be removed when we have more than one OpenShift deployment.
6+ oc project jotnar-prod
7+
58for filename in * .yml; do
69 # This check prevents an error if no .yml files are found.
710 if [ -e " $filename " ]; then
811 echo " Applying $filename ..."
12+ # TODO: avoid accidentally applying to wrong namespace by using `-n` argument
13+ # https://github.com/packit/ai-workflows/pull/74#discussion_r2256759455
914 oc apply -f " $filename "
1015 fi
1116done
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ apiVersion: v1
22kind : PersistentVolumeClaim
33metadata :
44 name : phoenix-data
5- namespace : jotnar-prod
65spec :
76 accessModes :
87 - ReadWriteOnce
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ apiVersion: v1
22kind : PersistentVolumeClaim
33metadata :
44 name : valkey-data
5- namespace : jotnar-prod
65spec :
76 accessModes :
87 - ReadWriteOnce
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ metadata:
1111 app.kubernetes.io/part-of : beeai
1212 app.openshift.io/runtime-version : version-11.6.2
1313 name : phoenix
14- namespace : jotnar-prod
1514spec :
1615 port :
1716 targetPort : 6006-tcp
You can’t perform that action at this time.
0 commit comments