Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1

- name: Install wandb chart repository
run: helm repo add wandb https://charts.wandb.ai

- name: Run chart-testing (list-changed)
id: list-changed
run: |
Expand Down
2 changes: 1 addition & 1 deletion charts/ctrlplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: ctrlplane
description: Ctrlplane Helm chart for Kubernetes
type: application
version: 1.1.0
version: 1.1.1
appVersion: 1.0.0

maintainers:
Expand Down
6 changes: 4 additions & 2 deletions charts/ctrlplane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ global:

# Secret management (propagated to subcharts via global).
# When empty, secrets are auto-generated by the chart.
# To reference externally managed secrets (e.g. ExternalSecrets), use valueFrom.
# To reference externally managed secrets (e.g. ExternalSecrets),
# use valueFrom.
secrets:
authSecret: ""
# authSecret:
Expand Down Expand Up @@ -123,7 +124,7 @@ ingress:
annotations: {}
tls:
enabled: false
secretName: "" # defaults to <fullname>-tls when empty
secretName: "" # defaults to <fullname>-tls when empty

otel:
install: true
Expand Down Expand Up @@ -241,6 +242,7 @@ workspace-engine:
name: pprof

env:
BASE_URL: "{{ .Values.global.fqdn }}"
GITHUB_URL: "{{ .Values.global.integrations.github.url }}"

envTpls:
Expand Down
Loading