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
8
8
kind : ConfigMap
9
9
metadata :
10
10
name : x-beeai-agent-configmap
11
- namespace : jotnar-prod
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
+ # TODO: This should be removed when we have more than one OpenShift deployment.
6
+ oc project jotnar-prod
7
+
5
8
for filename in * .yml; do
6
9
# This check prevents an error if no .yml files are found.
7
10
if [ -e " $filename " ]; then
8
11
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
9
14
oc apply -f " $filename "
10
15
fi
11
16
done
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ apiVersion: v1
2
2
kind : PersistentVolumeClaim
3
3
metadata :
4
4
name : phoenix-data
5
- namespace : jotnar-prod
6
5
spec :
7
6
accessModes :
8
7
- ReadWriteOnce
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ apiVersion: v1
2
2
kind : PersistentVolumeClaim
3
3
metadata :
4
4
name : valkey-data
5
- namespace : jotnar-prod
6
5
spec :
7
6
accessModes :
8
7
- ReadWriteOnce
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ metadata:
11
11
app.kubernetes.io/part-of : beeai
12
12
app.openshift.io/runtime-version : version-11.6.2
13
13
name : phoenix
14
- namespace : jotnar-prod
15
14
spec :
16
15
port :
17
16
targetPort : 6006-tcp
You can’t perform that action at this time.
0 commit comments