-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rstudio. From DeploymentConfig to Deployment DeploymentConfig is deprecated since OKD 4.14: - Switch from DeploymentConfig to Deployment - Add `initContainers` to wait for the build to be completed - Create a `serviceaccount`, `role` and `rolebinding` to be used to read the build status (oc wait) * Matomo. From DeploymentConfig to Deployment DeploymentConfig is deprecated since OKD 4.14: - Switch from DeploymentConfig to Deployment - Add annotations to keep the PVC after uninstalling the Chart - Fix Services * Minio. From DeploymentConfig to Deployment DeploymentConfig is deprecated since OKD 4.14: - Switch from DeploymentConfig to Deployment - Add annotations to keep the PVC after uninstalling the Chart - Update README * Update Charts version * Change to Recreate
- Loading branch information
Showing
15 changed files
with
96 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
apiVersion: v2 | ||
name: matomo-helm | ||
name: matomo | ||
description: Matomo Helm Chart for Rahti platform | ||
Link to the repo https://github.com/CSCfi/helm-charts | ||
version: 1.1.1 | ||
version: 1.2.1 | ||
sources: | ||
- https://github.com/CSCfi/helm-charts | ||
icon: https://avatars.githubusercontent.com/u/698038?s=280&v=4 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
apiVersion: v2 | ||
name: minio-helm | ||
name: minio | ||
description: Minio Helm Chart for Rahti platform | ||
Link to the repo https://github.com/CSCfi/helm-charts | ||
version: 1.1.1 | ||
version: 1.2.1 | ||
sources: | ||
- https://github.com/CSCfi/helm-charts | ||
icon: https://min.io/resources/img/logo.svg |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
apiVersion: v2 | ||
name: rstudio-helm | ||
name: rstudio | ||
description: RStudio Helm Chart for Rahti platform | ||
Link to the repo https://github.com/CSCfi/helm-charts | ||
version: 1.0.1 | ||
version: 1.2.1 | ||
sources: | ||
- https://github.com/CSCfi/helm-charts | ||
icon: https://upload.wikimedia.org/wikipedia/commons/0/0e/Eo_circle_light-blue_white_letter-r.svg |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
name: build-reader | ||
rules: | ||
- apiGroups: | ||
- build.openshift.io | ||
resources: | ||
- builds | ||
verbs: | ||
- get | ||
- list | ||
- watch |
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,11 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
name: build-reader | ||
subjects: | ||
- kind: ServiceAccount | ||
name: build-reader | ||
roleRef: | ||
kind: Role | ||
name: build-reader | ||
apiGroup: rbac.authorization.k8s.io |
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: build-reader |