This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip allow policy controller to be deployed independantly
give policy controller gateway perms give policy controller secret perms move crds update bundle change local-setup mgc to use new crd location move install and uninstall to policy.make update bundle and remove ns from add-on manager remove xargs command add monitors and services for policy controller
- Loading branch information
Showing
56 changed files
with
668 additions
and
345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ on: | |
branches: | ||
- main | ||
- "release-*" | ||
- separate-controller-deploy | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ on: | |
branches: | ||
- main | ||
- "release-*" | ||
- separate-controller-deploy | ||
tags: | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
...anifests/mgc-kuadrant-dnsrecord-editor-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/component: rbac | ||
app.kubernetes.io/created-by: multicluster-gateway-controller | ||
app.kubernetes.io/instance: dnsrecord-editor-role | ||
app.kubernetes.io/managed-by: kustomize | ||
app.kubernetes.io/name: clusterrole | ||
app.kubernetes.io/part-of: multicluster-gateway-controller | ||
name: mgc-kuadrant-dnsrecord-editor-role | ||
rules: | ||
- apiGroups: | ||
- kuadrant.io | ||
resources: | ||
- dnsrecords | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- kuadrant.io | ||
resources: | ||
- dnsrecords/status | ||
verbs: | ||
- get |
27 changes: 27 additions & 0 deletions
27
...anifests/mgc-kuadrant-dnsrecord-viewer-role_rbac.authorization.k8s.io_v1_clusterrole.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/component: rbac | ||
app.kubernetes.io/created-by: multicluster-gateway-controller | ||
app.kubernetes.io/instance: dnsrecord-viewer-role | ||
app.kubernetes.io/managed-by: kustomize | ||
app.kubernetes.io/name: clusterrole | ||
app.kubernetes.io/part-of: multicluster-gateway-controller | ||
name: mgc-kuadrant-dnsrecord-viewer-role | ||
rules: | ||
- apiGroups: | ||
- kuadrant.io | ||
resources: | ||
- dnsrecords | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- kuadrant.io | ||
resources: | ||
- dnsrecords/status | ||
verbs: | ||
- get |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.