-
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.
feat: Upgrade Cloud Pak for WAIOps to 4.1.0
Signed-off-by: Denilson Nastacio <[email protected]>
- Loading branch information
Showing
46 changed files
with
233 additions
and
1,091 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
9 changes: 0 additions & 9 deletions
9
config/argocd-cloudpaks/cp4waiops/templates/000-emgr-namespace.yaml
This file was deleted.
Oops, something went wrong.
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
23 changes: 0 additions & 23 deletions
23
config/argocd-cloudpaks/cp4waiops/templates/020-cloudpaks-emgr-role.yaml
This file was deleted.
Oops, something went wrong.
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
21 changes: 0 additions & 21 deletions
21
config/argocd-cloudpaks/cp4waiops/templates/021-cloudpaks-emgr-binding.yaml
This file was deleted.
Oops, something went wrong.
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
69 changes: 0 additions & 69 deletions
69
config/argocd-cloudpaks/cp4waiops/templates/120-cp4waiops-emgr-app.yaml
This file was deleted.
Oops, something went wrong.
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
44 changes: 44 additions & 0 deletions
44
config/cloudpaks/cp4waiops/install-aimgr/templates/resources/0020-common-services-roles.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,44 @@ | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
annotations: | ||
argocd.argoproj.io/sync-wave: "21" | ||
creationTimestamp: null | ||
name: common-services-cp4waiops-role | ||
namespace: ibm-common-services | ||
rules: | ||
- apiGroups: [""] | ||
resources: ["secrets"] | ||
verbs: ["get", "list", "create", "delete"] | ||
- apiGroups: ["apps"] | ||
resources: ["deployments"] | ||
verbs: ["get", "list", "patch", "watch"] | ||
- apiGroups: ["certmanager.k8s.io"] | ||
resources: ["certificates"] | ||
verbs: ["get", "list", "delete"] | ||
- apiGroups: ["operator.ibm.com"] | ||
resources: ["managementingresses"] | ||
verbs: ["get", "list", "patch"] | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
annotations: | ||
argocd.argoproj.io/sync-wave: "21" | ||
creationTimestamp: null | ||
name: common-services-cp4waiops-role | ||
namespace: {{.Values.metadata.argocd_app_namespace}} | ||
rules: | ||
- apiGroups: [""] | ||
resources: ["secrets"] | ||
verbs: ["get", "list", "create", "delete"] | ||
- apiGroups: ["apps"] | ||
resources: ["deployments"] | ||
verbs: ["get", "list", "patch", "watch"] | ||
- apiGroups: ["certmanager.k8s.io"] | ||
resources: ["certificates"] | ||
verbs: ["get", "list", "delete"] | ||
- apiGroups: ["operator.ibm.com"] | ||
resources: ["managementingresses"] | ||
verbs: ["get", "list", "patch"] |
34 changes: 34 additions & 0 deletions
34
...dpaks/cp4waiops/install-aimgr/templates/resources/0030-common-services-role-bindings.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,34 @@ | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
annotations: | ||
argocd.argoproj.io/sync-wave: "30" | ||
creationTimestamp: null | ||
name: common-services-cp4waiops-binding | ||
namespace: ibm-common-services | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: common-services-cp4waiops-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{.Values.serviceaccount.ibm_cloudpaks_installer}} | ||
namespace: {{.Values.metadata.argocd_namespace}} | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
annotations: | ||
argocd.argoproj.io/sync-wave: "30" | ||
creationTimestamp: null | ||
name: common-services-cp4waiops-binding | ||
namespace: {{.Values.metadata.argocd_app_namespace}} | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: common-services-cp4waiops-role | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{.Values.serviceaccount.ibm_cloudpaks_installer}} | ||
namespace: {{.Values.metadata.argocd_namespace}} |
Oops, something went wrong.