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

Commit 980581f

Browse files
committed
Upgrade node manager to v0.0.5
1 parent 76a661e commit 980581f

17 files changed

+237
-9
lines changed

.github/workflows/pre-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
RELATED_IMAGE_CSIV1_EXTERNAL_RESIZER=quay.io/k8scsi/csi-resizer:v1.1.0
1616
RELATED_IMAGE_STORAGEOS_INIT=storageos/init:v2.1.2
1717
RELATED_IMAGE_STORAGEOS_NODE=soegarots/node:v2-release-v2.7.0-24
18-
RELATED_IMAGE_NODE_MANAGER=storageos/node-manager:v0.0.4
18+
RELATED_IMAGE_NODE_MANAGER=storageos/node-manager:v0.0.5
1919
RELATED_IMAGE_UPGRADE_GUARD=storageos/upgrade-guard:v0.0.4
2020
RELATED_IMAGE_CSIV1_NODE_DRIVER_REGISTRAR=quay.io/k8scsi/csi-node-driver-registrar:v2.1.0
2121
RELATED_IMAGE_CSIV1_LIVENESS_PROBE=quay.io/k8scsi/livenessprobe:v2.2.0

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
RELATED_IMAGE_CSIV1_EXTERNAL_RESIZER=quay.io/k8scsi/csi-resizer:v1.1.0
1717
RELATED_IMAGE_STORAGEOS_INIT=storageos/init:v2.1.2
1818
RELATED_IMAGE_STORAGEOS_NODE=soegarots/node:v2-release-v2.7.0-24
19-
RELATED_IMAGE_NODE_MANAGER=storageos/node-manager:v0.0.4
19+
RELATED_IMAGE_NODE_MANAGER=storageos/node-manager:v0.0.5
2020
RELATED_IMAGE_UPGRADE_GUARD=storageos/upgrade-guard:v0.0.4
2121
RELATED_IMAGE_CSIV1_NODE_DRIVER_REGISTRAR=quay.io/k8scsi/csi-node-driver-registrar:v2.1.0
2222
RELATED_IMAGE_CSIV1_LIVENESS_PROBE=quay.io/k8scsi/livenessprobe:v2.2.0

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ EXTERNAL_ATTACHER_IMAGE ?= quay.io/k8scsi/csi-attacher:v3.1.0
8484
EXTERNAL_RESIZER_IMAGE ?= quay.io/k8scsi/csi-resizer:v1.1.0
8585
INIT_IMAGE ?= storageos/init:v2.1.2
8686
NODE_IMAGE ?= soegarots/node:v2-release-v2.7.0-24
87-
NODE_MANAGER_VERSION ?= v0.0.4
87+
NODE_MANAGER_VERSION ?= v0.0.5
8888
NODE_MANAGER_IMAGE ?= storageos/node-manager:$(NODE_MANAGER_VERSION)
8989
NODE_MANAGER_MANIFESTS_IMAGE ?= storageos/node-manager-manifests:$(NODE_MANAGER_VERSION)
9090
UPGRADE_GUARD_IMAGE ?= storageos/upgrade-guard:v0.0.4

bundle/manifests/storageos-related-images_v1_configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ data:
66
RELATED_IMAGE_CSIV1_EXTERNAL_RESIZER: quay.io/k8scsi/csi-resizer:v1.1.0
77
RELATED_IMAGE_CSIV1_LIVENESS_PROBE: quay.io/k8scsi/livenessprobe:v2.2.0
88
RELATED_IMAGE_CSIV1_NODE_DRIVER_REGISTRAR: quay.io/k8scsi/csi-node-driver-registrar:v2.1.0
9-
RELATED_IMAGE_NODE_MANAGER: storageos/node-manager:v0.0.4
9+
RELATED_IMAGE_NODE_MANAGER: storageos/node-manager:v0.0.5
1010
RELATED_IMAGE_PORTAL_MANAGER: storageos/portal-manager:v1.0.2
1111
RELATED_IMAGE_STORAGEOS_INIT: storageos/init:v2.1.2
1212
RELATED_IMAGE_STORAGEOS_NODE: soegarots/node:v2-release-v2.7.0-24

channels/1.23

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manifests:
66
- name: node
77
version: 2.5.0
88
- name: node-manager
9-
version: 0.0.4
9+
version: 0.0.5
1010
- name: portal-manager
1111
version: 1.0.2
1212
- name: scheduler

channels/1.24

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manifests:
66
- name: node
77
version: 2.5.0
88
- name: node-manager
9-
version: 0.0.4
9+
version: 0.0.5
1010
- name: portal-manager
1111
version: 1.0.2
1212
- name: scheduler
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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: node-manager
9+
name: storageos:node-manager
10+
rules:
11+
- apiGroups:
12+
- api.storageos.com
13+
resources:
14+
- nodes
15+
verbs:
16+
- get
17+
- list
18+
- watch
19+
- apiGroups:
20+
- api.storageos.com
21+
resources:
22+
- volumes
23+
verbs:
24+
- get
25+
- list
26+
- watch
27+
- apiGroups:
28+
- storageos.com
29+
resources:
30+
- storageosclusters
31+
verbs:
32+
- get
33+
- list
34+
- 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: node-manager
8+
name: storageos:proxy:node-manager
9+
rules:
10+
- apiGroups:
11+
- authentication.k8s.io
12+
resources:
13+
- tokenreviews
14+
verbs:
15+
- create
16+
- apiGroups:
17+
- authorization.k8s.io
18+
resources:
19+
- subjectaccessreviews
20+
verbs:
21+
- create
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: node-manager
8+
name: storageos:node-manager
9+
roleRef:
10+
apiGroup: rbac.authorization.k8s.io
11+
kind: ClusterRole
12+
name: storageos:node-manager
13+
subjects:
14+
- kind: ServiceAccount
15+
name: storageos-node-manager
16+
namespace: storageos
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: node-manager
8+
name: storageos:proxy:node-manager
9+
roleRef:
10+
apiGroup: rbac.authorization.k8s.io
11+
kind: ClusterRole
12+
name: storageos:proxy:node-manager
13+
subjects:
14+
- kind: ServiceAccount
15+
name: storageos-node-manager
16+
namespace: node-manager-system

0 commit comments

Comments
 (0)