Skip to content

Commit 008c2db

Browse files
committed
feat: add metadata even for cloudinit
1 parent 5371b80 commit 008c2db

File tree

12 files changed

+675
-720
lines changed

12 files changed

+675
-720
lines changed

.github/workflows/release.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ jobs:
3131
with:
3232
go-version: '1.22'
3333

34-
- name: Apply Orange patch
35-
run: |
36-
cp -ar patches/* .
3734
- name: Log in to registry
3835
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
3936

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ bin/*
33
out/*
44
tools/*
55
cover.out
6+
.tiltbuild

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ release: docker-build docker-push ## Build release images and push to registry.
202202

203203
.PHONY: release-manifests
204204
release-manifests: kustomize ## Generate release manifests e.g. CRD, RBAC etc.
205-
sed -e "s/__VERSION__/$(VERSION)/g" config/manager/manager.yaml.template > config/manager/manager.yaml
205+
sed -e "s#__REGISTRY__#$(REGISTRY)#g" -e "s/__CAPVCD_IMG__/$(CAPVCD_IMG)/g" -e "s/__VERSION__/$(VERSION)/g" config/manager/manager.yaml.template > config/manager/manager.yaml
206206
$(KUSTOMIZE) build config/default > templates/infrastructure-components.yaml
207207

208208
.PHONY: release-prep

config/rbac/role.yaml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ rules:
3939
- get
4040
- list
4141
- watch
42-
- apiGroups:
43-
- bootstrap.cluster.x-k8s.io
44-
resources:
45-
- kubeadmconfigtemplates
46-
verbs:
47-
- create
48-
- delete
49-
- get
50-
- list
51-
- patch
52-
- update
53-
- watch
42+
# - apiGroups:
43+
# - bootstrap.cluster.x-k8s.io
44+
# resources:
45+
# - kubeadmconfigtemplates
46+
# verbs:
47+
# - create
48+
# - delete
49+
# - get
50+
# - list
51+
# - patch
52+
# - update
53+
# - watch
5454
- apiGroups:
5555
- cluster.x-k8s.io
5656
resources:
@@ -81,18 +81,18 @@ rules:
8181
- get
8282
- list
8383
- watch
84-
- apiGroups:
85-
- controlplane.cluster.x-k8s.io
86-
resources:
87-
- kubeadmcontrolplanes
88-
verbs:
89-
- create
90-
- delete
91-
- get
92-
- list
93-
- patch
94-
- update
95-
- watch
84+
# - apiGroups:
85+
# - controlplane.cluster.x-k8s.io
86+
# resources:
87+
# - kubeadmcontrolplanes
88+
# verbs:
89+
# - create
90+
# - delete
91+
# - get
92+
# - list
93+
# - patch
94+
# - update
95+
# - watch
9696
- apiGroups:
9797
- infrastructure.cluster.x-k8s.io
9898
resources:

0 commit comments

Comments
 (0)