fix: cabundle and rbac

This commit is contained in:
2025-02-12 14:16:25 -07:00
parent 889345e804
commit 544bf7b503
4 changed files with 6 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.12 version: 0.1.13
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to

View File

@@ -144,7 +144,7 @@ spec:
oc new-project goghvideo-test-${RANDOMID} >/dev/null oc new-project goghvideo-test-${RANDOMID} >/dev/null
oc label namespace goghvideo-test-${RANDOMID} app=goghvideo-test oc label namespace goghvideo-test-${RANDOMID} app=goghvideo-test
oc apply -f - <<EOF oc create -f - <<EOF
apiVersion: v1 apiVersion: v1
data: {} data: {}
kind: ConfigMap kind: ConfigMap

View File

@@ -27,13 +27,14 @@ rules:
- tekton.dev - tekton.dev
resources: ["pipelineruns"] resources: ["pipelineruns"]
verbs: ["list", "get", "create", "update", "delete", "watch"] verbs: ["list", "get", "create", "update", "delete", "watch"]
- apiGroups: - apiGroups: ["project.openshift.io"]
- project.openshift.io
resources: ["*"] resources: ["*"]
verbs: ["*"] verbs: ["*"]
- apiGroups: ["*"] - apiGroups: ["*"]
resources: ["namespaces"] resources: ["namespaces"]
verbs: ["*"] verbs: ["*"]
- apiGroups: ["keda.sh"]
resources: ["scaledjobs","triggerauthentications"]
verbs: ["*"]
# Add any other resources you need access to (modify the apiGroups/resources as required) # Add any other resources you need access to (modify the apiGroups/resources as required)