Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ jobs:
with:
go-version: '1.22'

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

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ bin/*
out/*
tools/*
cover.out
.tiltbuild
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ release: docker-build docker-push ## Build release images and push to registry.

.PHONY: release-manifests
release-manifests: kustomize ## Generate release manifests e.g. CRD, RBAC etc.
sed -e "s/__VERSION__/$(VERSION)/g" config/manager/manager.yaml.template > config/manager/manager.yaml
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
$(KUSTOMIZE) build config/default > templates/infrastructure-components.yaml

.PHONY: release-prep
Expand Down
48 changes: 24 additions & 24 deletions config/rbac/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@ rules:
- get
- list
- watch
- apiGroups:
- bootstrap.cluster.x-k8s.io
resources:
- kubeadmconfigtemplates
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
# - apiGroups:
# - bootstrap.cluster.x-k8s.io
# resources:
# - kubeadmconfigtemplates
# verbs:
# - create
# - delete
# - get
# - list
# - patch
# - update
# - watch
- apiGroups:
- cluster.x-k8s.io
resources:
Expand Down Expand Up @@ -81,18 +81,18 @@ rules:
- get
- list
- watch
- apiGroups:
- controlplane.cluster.x-k8s.io
resources:
- kubeadmcontrolplanes
verbs:
- create
- delete
- get
- list
- patch
- update
- watch
# - apiGroups:
# - controlplane.cluster.x-k8s.io
# resources:
# - kubeadmcontrolplanes
# verbs:
# - create
# - delete
# - get
# - list
# - patch
# - update
# - watch
- apiGroups:
- infrastructure.cluster.x-k8s.io
resources:
Expand Down
Loading
Loading