Skip to content

Commit 8b5774b

Browse files
Merge pull request #534 from njhale/release-0.7.4
chore(release): cut release 0.7.4
2 parents a0a660a + b7bfa2f commit 8b5774b

File tree

53 files changed

+40583
-39
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+40583
-39
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ endif
167167
ifndef ver
168168
$(error ver is undefined)
169169
endif
170-
yaml w -i deploy/$(target)/values.yaml olm.image.ref $(olmref)
171-
yaml w -i deploy/$(target)/values.yaml catalog.image.ref $(olmref)
172-
yaml w -i deploy/$(target)/values.yaml package.image.ref $(olmref)
170+
yq w -i deploy/$(target)/values.yaml olm.image.ref $(olmref)
171+
yq w -i deploy/$(target)/values.yaml catalog.image.ref $(olmref)
172+
yq w -i deploy/$(target)/values.yaml package.image.ref $(olmref)
173173
./scripts/package-release.sh $(ver) deploy/$(target)/manifests/$(ver) deploy/$(target)/values.yaml
174174
ln -sfFn ./$(ver) deploy/$(target)/manifests/latest
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
##---
2+
# Source: olm/templates/0000_30_00-namespace.yaml
3+
apiVersion: v1
4+
kind: Namespace
5+
metadata:
6+
name: openshift-operator-lifecycle-manager
7+
labels:
8+
openshift.io/run-level: "1"
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
##---
2+
# Source: olm/templates/0000_30_01-olm-operator.serviceaccount.yaml
3+
apiVersion: rbac.authorization.k8s.io/v1
4+
kind: ClusterRole
5+
metadata:
6+
name: system:controller:operator-lifecycle-manager
7+
rules:
8+
- apiGroups: ["*"]
9+
resources: ["*"]
10+
verbs: ["*"]
11+
- nonResourceURLs: ["*"]
12+
verbs: ["*"]
13+
---
14+
kind: ServiceAccount
15+
apiVersion: v1
16+
metadata:
17+
name: olm-operator-serviceaccount
18+
namespace: openshift-operator-lifecycle-manager
19+
---
20+
apiVersion: rbac.authorization.k8s.io/v1
21+
kind: ClusterRoleBinding
22+
metadata:
23+
name: olm-operator-binding-openshift-operator-lifecycle-manager
24+
roleRef:
25+
apiGroup: rbac.authorization.k8s.io
26+
kind: ClusterRole
27+
name: system:controller:operator-lifecycle-manager
28+
subjects:
29+
- kind: ServiceAccount
30+
name: olm-operator-serviceaccount
31+
namespace: openshift-operator-lifecycle-manager

0 commit comments

Comments
 (0)