You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EPMDEDP-17274: chore: Bump edp-install chart to 3.15.0
Upgrade the edp-install dependency to 3.15.0 to pick up upstream changes, including
removal of the deprecated edp-headlamp sub-chart and a new Tekton Reporter option to
control whether failed-step log lines are published in PR comments.
@@ -24,14 +24,6 @@ A Helm chart for KubeRocketCI Platform
24
24
| edp-install.codebase-operator.branchStaleCheckInterval | string |`"24h"`| How often the operator re-checks that codebase branches still exist in git, marking missing ones with the Stale condition and the app.edp.epam.com/stale label (portal shows a stale badge). |
| edp-install.codebase-operator.ingressController | string |`"nginx"`| Ingress controller for the GitServer EventListener webhook: "nginx" (Ingress) or "envoy" (Gateway API HTTPRoute). When set to "envoy", the operator attaches an HTTPRoute to global.gatewayApi.{gatewayName,gatewayNamespace}. |
27
-
| edp-install.edp-headlamp.config.baseURL | string |`""`| base url path at which headlamp should run |
28
-
| edp-install.edp-headlamp.config.oidc | object |`{"clientID":"shared","clientSecretKey":"clientSecret","clientSecretName":"keycloak-client-headlamp-secret","enabled":false,"issuerUrl":"","scopes":""}`| For detailed instructions, refer to: https://docs.kuberocketci.io/docs/operator-guide/auth/configure-keycloak-oidc-eks, https://docs.kuberocketci.io/docs/operator-guide/auth/ui-portal-oidc|
29
-
| edp-install.edp-headlamp.config.oidc.clientID | string |`"shared"`| OIDC client ID |
| edp-install.edp-tekton.clusterName | string |`"core"`| Cluster name used to construct the krci-portal pipeline URL (/c/<clusterName>/...). Must match krci-portal.configEnv.DEFAULT_CLUSTER_NAME. If left empty, falls back to the first segment of global.dnsWildCard. |
@@ -42,6 +34,7 @@ A Helm chart for KubeRocketCI Platform
42
34
| edp-install.edp-tekton.portalHost | string |`""`| Host used to build krci-portal pipeline links in Tekton (and Reporter PR comments), together with clusterName. If empty, falls back to a value derived from global.dnsWildCard. |
43
35
| edp-install.edp-tekton.reporter.commentStrategy | string |`"update"`| Report comment strategy: 'update' edits the previous report comment of the same pull request, 'new' always creates a new comment |
44
36
| edp-install.edp-tekton.reporter.enabled | bool |`true`| Deploy the Tekton Reporter as a part of the pipeline library when true. Default: true |
37
+
| edp-install.edp-tekton.reporter.logsReporting | bool |`false`| Publish trailing log lines of failed steps in PR comments. Disabled by default to prevent secrets exposure |
45
38
| edp-install.edp-tekton.reporter.tailLines | int |`100`| Number of trailing log lines published for every failed step |
Copy file name to clipboardExpand all lines: clusters/core/addons/kuberocketci/values.yaml
+3-32Lines changed: 3 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
edp-install:
2
2
## edp-install configuration
3
-
## Full list of parameters are available in https://github.com/epam/edp-install/blob/v3.14.1/deploy-templates/values.yaml and in each of subchart
3
+
## A complete list of parameters can be found in the values.yaml file at https://github.com/epam/edp-install/blob/v3.15.0/deploy-templates/values.yaml, as well as in each subchart.
4
4
global:
5
5
# -- platform type that can be "kubernetes" or "openshift"
6
6
platform: "kubernetes"
@@ -181,37 +181,6 @@ edp-install:
181
181
# visible: true
182
182
# icon: icon_in_base64
183
183
184
-
edp-headlamp:
185
-
enabled: false
186
-
config:
187
-
# -- base url path at which headlamp should run
188
-
baseURL: ""
189
-
# -- Ensure that the specified client is associated with cluster OIDC integration.
190
-
# -- For detailed instructions, refer to: https://docs.kuberocketci.io/docs/operator-guide/auth/configure-keycloak-oidc-eks, https://docs.kuberocketci.io/docs/operator-guide/auth/ui-portal-oidc
191
-
oidc:
192
-
# Enable OIDC integration. Default: false
193
-
enabled: false
194
-
# -- OIDC Issuer URL for authentication.
195
-
# -- This URL identifies the OpenID Connect provider endpoint. Examples:
0 commit comments