This repository was archived by the owner on Apr 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +545
-4
lines changed Expand file tree Collapse file tree 5 files changed +545
-4
lines changed Original file line number Diff line number Diff line change @@ -68,14 +68,14 @@ Create the necessary Custom Resource Definitions
68
68
69
69
```
70
70
71
- oc apply -f https://github.com/bbrowning/crc-operator/releases/download/v0.5.0 /release-v0.5.0_crd .yaml
71
+ oc apply -f https://github.com/bbrowning/crc-operator/releases/download/v0.5.1 /release-v0.5.1_crd .yaml
72
72
```
73
73
74
74
Deploy the operator
75
75
76
76
```
77
77
oc create ns crc-operator
78
- oc apply -f https://github.com/bbrowning/crc-operator/releases/download/v0.5.0 /release-v0.5.0 .yaml
78
+ oc apply -f https://github.com/bbrowning/crc-operator/releases/download/v0.5.1 /release-v0.5.1 .yaml
79
79
```
80
80
81
81
Ensure the operator comes up with no errors in its logs
@@ -89,7 +89,7 @@ set that anyone can use is shipped with each release. Advanced users
89
89
may want to create their own as described in [ DEVELOPMENT.md] ( ) .
90
90
91
91
```
92
- oc apply -f https://github.com/bbrowning/crc-operator/releases/download/v0.5.0 /release-v0.5.0_bundles .yaml
92
+ oc apply -f https://github.com/bbrowning/crc-operator/releases/download/v0.5.1 /release-v0.5.1_bundles .yaml
93
93
```
94
94
95
95
## Create a CRC cluster
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : ServiceAccount
3
+ metadata :
4
+ name : crc-operator
5
+ namespace : crc-operator
6
+
7
+ ---
8
+
9
+ apiVersion : rbac.authorization.k8s.io/v1
10
+ kind : ClusterRole
11
+ metadata :
12
+ creationTimestamp : null
13
+ name : crc-operator
14
+ rules :
15
+ - apiGroups :
16
+ - " "
17
+ resources :
18
+ - pods
19
+ - services
20
+ - services/finalizers
21
+ - endpoints
22
+ - persistentvolumeclaims
23
+ - events
24
+ - configmaps
25
+ - secrets
26
+ - serviceaccounts
27
+ verbs :
28
+ - create
29
+ - delete
30
+ - get
31
+ - list
32
+ - patch
33
+ - update
34
+ - watch
35
+ - apiGroups :
36
+ - apps
37
+ resources :
38
+ - deployments
39
+ - replicasets
40
+ verbs :
41
+ - create
42
+ - delete
43
+ - get
44
+ - list
45
+ - patch
46
+ - update
47
+ - watch
48
+ - apiGroups :
49
+ - monitoring.coreos.com
50
+ resources :
51
+ - servicemonitors
52
+ verbs :
53
+ - get
54
+ - create
55
+ - apiGroups :
56
+ - apps
57
+ resourceNames :
58
+ - crc-operator
59
+ resources :
60
+ - deployments/finalizers
61
+ verbs :
62
+ - update
63
+ - apiGroups :
64
+ - " "
65
+ resources :
66
+ - pods
67
+ verbs :
68
+ - get
69
+ - apiGroups :
70
+ - apps
71
+ resources :
72
+ - replicasets
73
+ - deployments
74
+ verbs :
75
+ - get
76
+ - apiGroups :
77
+ - crc.developer.openshift.io
78
+ resources :
79
+ - " *"
80
+ verbs :
81
+ - create
82
+ - delete
83
+ - get
84
+ - list
85
+ - patch
86
+ - update
87
+ - watch
88
+ - apiGroups :
89
+ - kubevirt.io
90
+ resources :
91
+ - virtualmachines
92
+ verbs :
93
+ - create
94
+ - delete
95
+ - get
96
+ - list
97
+ - patch
98
+ - update
99
+ - watch
100
+ - apiGroups :
101
+ - config.openshift.io
102
+ resources :
103
+ - ingresses
104
+ verbs :
105
+ - get
106
+ - list
107
+ - watch
108
+ - apiGroups :
109
+ - networking.k8s.io
110
+ resources :
111
+ - ingresses
112
+ verbs :
113
+ - create
114
+ - delete
115
+ - get
116
+ - list
117
+ - patch
118
+ - update
119
+ - watch
120
+ - apiGroups :
121
+ - route.openshift.io
122
+ resources :
123
+ - routes
124
+ - routes/custom-host
125
+ verbs :
126
+ - create
127
+ - delete
128
+ - get
129
+ - list
130
+ - patch
131
+ - update
132
+ - watch
133
+ - apiGroups :
134
+ - rbac.authorization.k8s.io
135
+ resources :
136
+ - roles
137
+ - rolebindings
138
+ verbs :
139
+ - create
140
+ - delete
141
+ - get
142
+ - list
143
+ - patch
144
+ - update
145
+ - watch
146
+
147
+ ---
148
+
149
+ kind : ClusterRoleBinding
150
+ apiVersion : rbac.authorization.k8s.io/v1
151
+ metadata :
152
+ name : crc-operator
153
+ subjects :
154
+ - kind : ServiceAccount
155
+ name : crc-operator
156
+ namespace : crc-operator
157
+ roleRef :
158
+ kind : ClusterRole
159
+ name : crc-operator
160
+ apiGroup : rbac.authorization.k8s.io
161
+
162
+ ---
163
+
164
+ apiVersion : apps/v1
165
+ kind : Deployment
166
+ metadata :
167
+ name : crc-operator
168
+ namespace : crc-operator
169
+ spec :
170
+ replicas : 1
171
+ selector :
172
+ matchLabels :
173
+ name : crc-operator
174
+ template :
175
+ metadata :
176
+ labels :
177
+ name : crc-operator
178
+ spec :
179
+ serviceAccountName : crc-operator
180
+ containers :
181
+ - name : crc-operator
182
+ image : quay.io/bbrowning/crc-operator:v0.5.1
183
+ command :
184
+ - crc-operator
185
+ imagePullPolicy : Always
186
+ env :
187
+ - name : WATCH_NAMESPACE
188
+ value : " "
189
+ - name : POD_NAME
190
+ valueFrom :
191
+ fieldRef :
192
+ fieldPath : metadata.name
193
+ - name : POD_NAMESPACE
194
+ valueFrom :
195
+ fieldRef :
196
+ fieldPath : metadata.namespace
197
+ - name : OPERATOR_NAME
198
+ value : crc-operator
199
+ - name : ROUTES_HELPER_IMAGE
200
+ value : quay.io/bbrowning/crc-operator-routes-helper:v0.5.1
201
+ - name : DEFAULT_BUNDLE_NAME
202
+ value : ocp448
203
+
204
+ ---
205
+
You can’t perform that action at this time.
0 commit comments