-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ibio Signed-off-by: Cameron Wall <[email protected]> * ibio chart Signed-off-by: Cameron Wall <[email protected]> * rbac Signed-off-by: Cameron Wall <[email protected]> * rbac Signed-off-by: Cameron Wall <[email protected]> * auto Signed-off-by: Cameron Wall <[email protected]> --------- Signed-off-by: Cameron Wall <[email protected]>
- Loading branch information
1 parent
f68c671
commit e15bc3d
Showing
20 changed files
with
832 additions
and
16 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
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
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
6 changes: 6 additions & 0 deletions
6
pkg/templates/charts/toggle/image-based-install-operator/Chart.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,6 @@ | ||
apiVersion: v2 | ||
appVersion: 2.5.0 | ||
description: A Helm chart for Kubernetes | ||
name: image-based-install-operator | ||
type: application | ||
version: 2.5.0 |
71 changes: 71 additions & 0 deletions
71
.../charts/toggle/image-based-install-operator/templates/controller-manager-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,71 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: '{{ .Values.org }}:{{ .Chart.Name }}:controller-manager' | ||
rules: | ||
- apiGroups: | ||
- '' | ||
resources: | ||
- secrets | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- extensions.hive.openshift.io | ||
resources: | ||
- imageclusterinstalls | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- extensions.hive.openshift.io | ||
resources: | ||
- imageclusterinstalls/finalizers | ||
verbs: | ||
- update | ||
- apiGroups: | ||
- extensions.hive.openshift.io | ||
resources: | ||
- imageclusterinstalls/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- hive.openshift.io | ||
resources: | ||
- clusterdeployments | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- hive.openshift.io | ||
resources: | ||
- clusterimagesets | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- metal3.io | ||
resources: | ||
- baremetalhosts | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch |
12 changes: 12 additions & 0 deletions
12
.../toggle/image-based-install-operator/templates/controller-manager-clusterrolebinding.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,12 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: '{{ .Values.org }}:{{ .Chart.Name }}:controller-manager' | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: ClusterRole | ||
name: '{{ .Values.org }}:{{ .Chart.Name }}:controller-manager' | ||
subjects: | ||
- kind: ServiceAccount | ||
name: controller-manager | ||
namespace: '{{ .Values.global.namespace }}' |
36 changes: 36 additions & 0 deletions
36
...mplates/charts/toggle/image-based-install-operator/templates/controller-manager-role.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,36 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
name: '{{ .Values.org }}:{{ .Chart.Name }}:controller-manager' | ||
rules: | ||
- apiGroups: | ||
- '' | ||
resources: | ||
- configmaps | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- create | ||
- update | ||
- patch | ||
- delete | ||
- apiGroups: | ||
- coordination.k8s.io | ||
resources: | ||
- leases | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- create | ||
- update | ||
- patch | ||
- delete | ||
- apiGroups: | ||
- '' | ||
resources: | ||
- events | ||
verbs: | ||
- create | ||
- patch |
12 changes: 12 additions & 0 deletions
12
.../charts/toggle/image-based-install-operator/templates/controller-manager-rolebinding.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,12 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
name: '{{ .Values.org }}:{{ .Chart.Name }}:controller-manager' | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: '{{ .Values.org }}:{{ .Chart.Name }}:controller-manager' | ||
subjects: | ||
- kind: ServiceAccount | ||
name: controller-manager | ||
namespace: '{{ .Values.global.namespace }}' |
4 changes: 4 additions & 0 deletions
4
...arts/toggle/image-based-install-operator/templates/controller-manager-serviceaccount.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,4 @@ | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: controller-manager |
17 changes: 17 additions & 0 deletions
17
.../toggle/image-based-install-operator/templates/image-based-install-config_v1_service.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,17 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
annotations: | ||
service.beta.openshift.io/serving-cert-secret-name: ibi-config-serving-certs | ||
creationTimestamp: null | ||
name: image-based-install-config | ||
spec: | ||
ports: | ||
- name: config-server | ||
port: 8000 | ||
protocol: TCP | ||
targetPort: 0 | ||
selector: | ||
app: image-based-install-operator | ||
status: | ||
loadBalancer: {} |
Oops, something went wrong.