Skip to content

Commit

Permalink
chore: Remove 'edp' from helm chart name (#122)
Browse files Browse the repository at this point in the history
Change-Id: If245a05a9c80cc32a38a75f82e422b5c5c331ec6
  • Loading branch information
MykolaMarusenko committed Feb 19, 2024
1 parent 977b8c1 commit e4b0843
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions charts/pipelines-library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Follows [Tekton Interceptor](https://tekton.dev/vault/triggers-main/clusterinter
| dashboard.ingress.annotations | object | `{}` | Annotations for Ingress resource |
| dashboard.ingress.enabled | bool | `true` | Enable external endpoint access. Default Ingress/Route host pattern: tekton-{{ .Release.Namespace }}.{{ .Values.global.dnsWildCard }} |
| dashboard.ingress.tls | list | `[]` | Uncomment it to enable tekton-dashboard OIDC on EKS cluster nginx.ingress.kubernetes.io/auth-signin: 'https://<oauth-ingress-host>/oauth2/start?rd=https://$host$request_uri' nginx.ingress.kubernetes.io/auth-url: 'http://oauth2-proxy.<edp-project>.svc.cluster.local:8080/oauth2/auth' |
| dashboard.nameOverride | string | `"edp-tekton-dashboard"` | |
| dashboard.nameOverride | string | `"tekton-dashboard"` | |
| dashboard.openshift_proxy | object | `{"enabled":false,"image":{"repository":"quay.io/openshift/origin-oauth-proxy","tag":"4.9.0"},"resources":{"limits":{"cpu":"60m","memory":"70Mi"},"requests":{"cpu":"50m","memory":"40Mi"}}}` | For EKS scenario - uncomment dashboard.ingress.annotations block |
| dashboard.openshift_proxy.enabled | bool | `false` | Enable oauth-proxy to include authorization layer on tekton-dashboard. Default: false |
| dashboard.openshift_proxy.image.repository | string | `"quay.io/openshift/origin-oauth-proxy"` | oauth-proxy image repository |
Expand Down Expand Up @@ -109,7 +109,7 @@ Follows [Tekton Interceptor](https://tekton.dev/vault/triggers-main/clusterinter
| interceptor.image.repository | string | `"epamedp/edp-tekton"` | |
| interceptor.image.tag | string | `nil` | Overrides the image tag whose default is the chart appVersion. |
| interceptor.imagePullSecrets | list | `[]` | |
| interceptor.nameOverride | string | `"edp-tekton-interceptor"` | |
| interceptor.nameOverride | string | `"tekton-interceptor"` | |
| interceptor.podAnnotations | object | `{}` | |
| interceptor.podSecurityContext | object | `{}` | |
| interceptor.resources | object | `{"limits":{"cpu":"70m","memory":"60Mi"},"requests":{"cpu":"50m","memory":"40Mi"}}` | The resource limits and requests for the Tekton Interceptor |
Expand Down
4 changes: 2 additions & 2 deletions charts/pipelines-library/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ interceptor:
# -- Deploy EDP interceptor as a part of pipeline library when true. Default: true
enabled: true

nameOverride: "edp-tekton-interceptor"
nameOverride: "tekton-interceptor"

image:
repository: epamedp/edp-tekton
Expand Down Expand Up @@ -296,7 +296,7 @@ dashboard:
# -- Namespace where cluster tekton triggers deployed. Default: tekton-pipelines
triggersNamespace: "tekton-pipelines"

nameOverride: "edp-tekton-dashboard"
nameOverride: "tekton-dashboard"
# -- Define mode for Tekton Dashboard. Enable/disaable capability to create/modify/remove Tekton objects via Tekton Dashboard. Default: false
readOnly: false

Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/gerrit/02-assert.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: edp-tekton-dashboard
name: tekton-dashboard
status:
readyReplicas: 1

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: edp-tekton-interceptor
name: tekton-interceptor
status:
readyReplicas: 1

Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/github/02-assert.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: edp-tekton-dashboard
name: tekton-dashboard
status:
readyReplicas: 1

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: edp-tekton-interceptor
name: tekton-interceptor
status:
readyReplicas: 1

Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/gitlab/02-assert.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: edp-tekton-dashboard
name: tekton-dashboard
status:
readyReplicas: 1

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: edp-tekton-interceptor
name: tekton-interceptor
status:
readyReplicas: 1

Expand Down

0 comments on commit e4b0843

Please sign in to comment.