Skip to content
This repository was archived by the owner on Apr 14, 2025. It is now read-only.

Commit f031277

Browse files
committed
Release v0.5.1
1 parent 3188d2d commit f031277

File tree

5 files changed

+545
-4
lines changed

5 files changed

+545
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ Create the necessary Custom Resource Definitions
6868

6969
```
7070
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
7272
```
7373

7474
Deploy the operator
7575

7676
```
7777
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
7979
```
8080

8181
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
8989
may want to create their own as described in [DEVELOPMENT.md]().
9090

9191
```
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
9393
```
9494

9595
## Create a CRC cluster

deploy/releases/release-v0.5.1.yaml

Lines changed: 205 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
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+

0 commit comments

Comments
 (0)