Skip to content

Commit b623692

Browse files
committed
Fix namespace
1 parent 5d2c85b commit b623692

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

boskos/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
PROJECT ?= k8s-prow-builds
1616
ZONE ?= us-central1-f
1717
CLUSTER ?= prow
18+
NAMESPACE ?= test-pods
1819

1920
TAG = $(shell date +v%Y%m%d)-$(shell git describe --tags --always --dirty)
2021

@@ -61,7 +62,7 @@ service:
6162
kubectl apply -f service.yaml
6263

6364
update-config: get-cluster-credentials
64-
kubectl create configmap resources --from-file=config=resources.json --dry-run -o yaml | kubectl replace configmap resources -f -
65+
kubectl create configmap resources --from-file=config=resources.json --dry-run -o yaml | kubectl --namespace="$(NAMESPACE)" replace configmap resources -f -
6566

6667
get-cluster-credentials:
6768
gcloud container clusters get-credentials "$(CLUSTER)" --project="$(PROJECT)" --zone="$(ZONE)"

boskos/deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ metadata:
1818
labels:
1919
app: boskos
2020
name: boskos-storage
21+
namespace: test-pods
2122
spec:
2223
capacity:
2324
storage: 1Gi
@@ -35,6 +36,7 @@ metadata:
3536
labels:
3637
app: boskos
3738
name: boskos-storage
39+
namespace: test-pods
3840
spec:
3941
accessModes:
4042
- ReadWriteOnce
@@ -49,12 +51,14 @@ metadata:
4951
name: boskos
5052
labels:
5153
app: boskos
54+
namespace: test-pods
5255
spec:
5356
replicas: 1 # one canonical source of resources
5457
template:
5558
metadata:
5659
labels:
5760
app: boskos
61+
namespace: test-pods
5862
spec:
5963
terminationGracePeriodSeconds: 30
6064
containers:

boskos/janitor/deployment.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ metadata:
44
name: boskos-janitor
55
labels:
66
app: boskos-janitor
7+
namespace: test-pods
78
spec:
89
replicas: 1 # one canonical source of resources
910
template:

boskos/reaper/deployment.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ metadata:
44
name: boskos-reaper
55
labels:
66
app: boskos-reaper
7+
namespace: test-pods
78
spec:
89
replicas: 1 # one canonical source of resources
910
template:

boskos/resources.json

-10
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@
112112
"k8s-jkns-f8n-gce-upg",
113113
"k8s-jkns-e2e-bazel",
114114
"k8s-jkns-e2e-ubuntu-gce-1-6",
115-
"k8s-jkns-non-cri-gce-sd-log",
116115
"ci-k8s-e2e-gci-tip-gce",
117116
"gce-gci-upg-lat-1-4-ctl-skew",
118117
"gce-cvm-upg-lat-1-4-ctl-skew",
@@ -124,7 +123,6 @@
124123
"gce-cvm-upg-1-3-lat-ctl-skew",
125124
"k8s-gce-ingress1-5",
126125
"k8s-e2e-gce-f8n-1-5",
127-
"e2e-gce-gci-qa-serial-m55",
128126
"k8s-jkns-gci-gce-multizone",
129127
"k8s-jkns-gci-gce-kubenet",
130128
"k8s-jkns-e2e-gci-gce-soak-1-4",
@@ -136,9 +134,6 @@
136134
"gce-gci-upg-1-4-1-3-ctl-skew",
137135
"gce-cvm-upg-1-3-1-4-ctl-skew",
138136
"gce-gci-upg-1-3-1-4-ctl-skew",
139-
"kube-gce-upg-1-3-1-4-upg-clu-n",
140-
"kube-gce-upg-1-3-1-4-upg-clu",
141-
"kube-gce-upg-1-3-1-4-upg-mas",
142137
"kubernetes-gci-flannel",
143138
"k8s-jkns-gci-gce-slow-1-2",
144139
"k8s-jkns-gci-gce-reboot-1-2",
@@ -156,11 +151,6 @@
156151
"k8s-jkns-gce-soak-1-2",
157152
"k8s-jkns-e2e-gce-slow-1-2",
158153
"k8s-jkns-gce-upgrade",
159-
"k8s-jkns-upgrade-fixed-5",
160-
"k8s-jkns-upgrade-fixed-4",
161-
"k8s-jkns-upgrade-fixed-3",
162-
"k8s-jkns-upgrade-fixed-2",
163-
"k8s-jkns-upgrade-fixed-1",
164154
"k8s-jkns-gce-kube-push",
165155
"k8s-e2e-gce-scalability",
166156
"k8s-jkns-e2e-gce-prl-flaky",

boskos/service.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ apiVersion: v1
1616
kind: Service
1717
metadata:
1818
name: boskos
19+
namespace: test-pods
1920
spec:
2021
selector:
2122
app: boskos

0 commit comments

Comments
 (0)