Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit 999997f

Browse files
committed
Upgrade api manager to 1.2.9
1 parent 6edce63 commit 999997f

21 files changed

+835
-9
lines changed

.github/workflows/pre-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
EXPECTED_REL_IMAGE_CONF: |
11-
REL_IMAGE_CONF=RELATED_IMAGE_API_MANAGER=storageos/api-manager:v1.2.8
11+
REL_IMAGE_CONF=RELATED_IMAGE_API_MANAGER=storageos/api-manager:v1.2.9
1212
RELATED_IMAGE_PORTAL_MANAGER=storageos/portal-manager:v1.0.2
1313
RELATED_IMAGE_CSIV1_EXTERNAL_PROVISIONER=storageos/csi-provisioner:v2.1.1-patched
1414
RELATED_IMAGE_CSIV1_EXTERNAL_ATTACHER_V3=quay.io/k8scsi/csi-attacher:v3.1.0

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
EXPECTED_REL_IMAGE_CONF: |
12-
REL_IMAGE_CONF=RELATED_IMAGE_API_MANAGER=storageos/api-manager:v1.2.8
12+
REL_IMAGE_CONF=RELATED_IMAGE_API_MANAGER=storageos/api-manager:v1.2.9
1313
RELATED_IMAGE_PORTAL_MANAGER=storageos/portal-manager:v1.0.2
1414
RELATED_IMAGE_CSIV1_EXTERNAL_PROVISIONER=storageos/csi-provisioner:v2.1.1-patched
1515
RELATED_IMAGE_CSIV1_EXTERNAL_ATTACHER_V3=quay.io/k8scsi/csi-attacher:v3.1.0

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ LD_FLAGS = -X main.SupportedMinKubeVersion=$(MIN_KUBE_VERSION)
7373
SHELL = /usr/bin/env bash -o pipefail
7474
.SHELLFLAGS = -ec
7575

76-
API_MANAGER_VERSION ?= v1.2.8
76+
API_MANAGER_VERSION ?= v1.2.9
7777
API_MANAGER_IMAGE ?= storageos/api-manager:$(API_MANAGER_VERSION)
7878
API_MANAGER_MANIFESTS_IMAGE ?= storageos/api-manager-manifests:$(API_MANAGER_VERSION)
7979
PORTAL_MANAGER_VERSION ?= v1.0.2

bundle/manifests/storageos-related-images_v1_configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
data:
3-
RELATED_IMAGE_API_MANAGER: storageos/api-manager:v1.2.8
3+
RELATED_IMAGE_API_MANAGER: storageos/api-manager:v1.2.9
44
RELATED_IMAGE_CSIV1_EXTERNAL_ATTACHER_V3: quay.io/k8scsi/csi-attacher:v3.1.0
55
RELATED_IMAGE_CSIV1_EXTERNAL_PROVISIONER: storageos/csi-provisioner:v2.1.1-patched
66
RELATED_IMAGE_CSIV1_EXTERNAL_RESIZER: quay.io/k8scsi/csi-resizer:v1.1.0

bundle/manifests/storageosoperator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ spec:
828828
name: https
829829
resources: {}
830830
securityContext:
831-
runAsNonRoot: true
831+
runAsUser: 65532
832832
serviceAccountName: storageos-operator
833833
terminationGracePeriodSeconds: 10
834834
topologySpreadConstraints:

channels/1.23

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
manifests:
22
- name: api-manager
3-
version: 1.2.8
3+
version: 1.2.9
44
- name: csi
55
version: 0.1.0
66
- name: node

channels/1.24

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
manifests:
22
- name: api-manager
3-
version: 1.2.8
3+
version: 1.2.9
44
- name: csi
55
version: 0.1.0
66
- name: node
Lines changed: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
2+
apiVersion: rbac.authorization.k8s.io/v1
3+
kind: ClusterRole
4+
metadata:
5+
creationTimestamp: null
6+
labels:
7+
app: storageos
8+
app.kubernetes.io/component: api-manager
9+
name: storageos:api-manager
10+
rules:
11+
- apiGroups:
12+
- ""
13+
resources:
14+
- configmaps
15+
verbs:
16+
- create
17+
- delete
18+
- get
19+
- list
20+
- patch
21+
- update
22+
- watch
23+
- apiGroups:
24+
- ""
25+
resources:
26+
- configmaps/status
27+
verbs:
28+
- get
29+
- patch
30+
- update
31+
- apiGroups:
32+
- ""
33+
resources:
34+
- endpoints
35+
verbs:
36+
- create
37+
- delete
38+
- get
39+
- list
40+
- patch
41+
- update
42+
- watch
43+
- apiGroups:
44+
- ""
45+
resources:
46+
- endpoints/status
47+
verbs:
48+
- get
49+
- patch
50+
- update
51+
- apiGroups:
52+
- ""
53+
resources:
54+
- events
55+
verbs:
56+
- create
57+
- patch
58+
- apiGroups:
59+
- ""
60+
resources:
61+
- namespaces
62+
verbs:
63+
- get
64+
- list
65+
- watch
66+
- apiGroups:
67+
- ""
68+
resources:
69+
- node
70+
verbs:
71+
- get
72+
- list
73+
- watch
74+
- apiGroups:
75+
- ""
76+
resources:
77+
- nodes
78+
verbs:
79+
- get
80+
- list
81+
- watch
82+
- apiGroups:
83+
- ""
84+
resources:
85+
- persistentvolumeclaims
86+
verbs:
87+
- get
88+
- list
89+
- update
90+
- watch
91+
- apiGroups:
92+
- ""
93+
resources:
94+
- pods
95+
verbs:
96+
- delete
97+
- get
98+
- list
99+
- watch
100+
- apiGroups:
101+
- ""
102+
resources:
103+
- secrets
104+
verbs:
105+
- create
106+
- delete
107+
- get
108+
- list
109+
- patch
110+
- update
111+
- watch
112+
- apiGroups:
113+
- ""
114+
resources:
115+
- services
116+
verbs:
117+
- create
118+
- delete
119+
- get
120+
- list
121+
- patch
122+
- update
123+
- watch
124+
- apiGroups:
125+
- ""
126+
resources:
127+
- services/status
128+
verbs:
129+
- get
130+
- patch
131+
- update
132+
- apiGroups:
133+
- admissionregistration.k8s.io
134+
resources:
135+
- mutatingwebhookconfigurations
136+
- validatingwebhookconfigurations
137+
verbs:
138+
- '*'
139+
- apiGroups:
140+
- api.storageos.com
141+
resources:
142+
- nodes
143+
verbs:
144+
- create
145+
- delete
146+
- get
147+
- list
148+
- patch
149+
- watch
150+
- apiGroups:
151+
- api.storageos.com
152+
resources:
153+
- nodes/status
154+
verbs:
155+
- get
156+
- patch
157+
- update
158+
- apiGroups:
159+
- api.storageos.com
160+
resources:
161+
- volumes
162+
verbs:
163+
- create
164+
- delete
165+
- get
166+
- list
167+
- patch
168+
- watch
169+
- apiGroups:
170+
- api.storageos.com
171+
resources:
172+
- volumes/status
173+
verbs:
174+
- get
175+
- patch
176+
- update
177+
- apiGroups:
178+
- coordination.k8s.io
179+
resources:
180+
- leases
181+
verbs:
182+
- create
183+
- delete
184+
- get
185+
- list
186+
- patch
187+
- update
188+
- watch
189+
- apiGroups:
190+
- storage.k8s.io
191+
resources:
192+
- storageclasses
193+
verbs:
194+
- get
195+
- list
196+
- watch
197+
- apiGroups:
198+
- storage.k8s.io
199+
resources:
200+
- volumeattachments
201+
verbs:
202+
- delete
203+
- get
204+
- list
205+
- watch
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
apiVersion: rbac.authorization.k8s.io/v1
3+
kind: ClusterRole
4+
metadata:
5+
labels:
6+
app: storageos
7+
app.kubernetes.io/component: api-manager
8+
name: storageos:key-management
9+
rules:
10+
- apiGroups:
11+
- ""
12+
resources:
13+
- secrets
14+
verbs:
15+
- create
16+
- delete
17+
- get
18+
- list
19+
- patch
20+
- update
21+
- watch
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
apiVersion: rbac.authorization.k8s.io/v1
3+
kind: ClusterRoleBinding
4+
metadata:
5+
labels:
6+
app: storageos
7+
app.kubernetes.io/component: api-manager
8+
name: storageos:api-manager
9+
roleRef:
10+
apiGroup: rbac.authorization.k8s.io
11+
kind: ClusterRole
12+
name: storageos:api-manager
13+
subjects:
14+
- kind: ServiceAccount
15+
name: storageos-api-manager
16+
namespace: storageos

0 commit comments

Comments
 (0)