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
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: 0.5.0
version: 0.5.1
appVersion: "1.16.0"

maintainers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@ spec:
env:
- name: KAFKA_BROKERS
value: {{ .Values.global.kafkaBrokers | quote }}
- name: REDIS_URL
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-connections
key: REDIS_URL
- name: POSTGRES_URL
valueFrom:
secretKeyRef:
Expand Down
5 changes: 0 additions & 5 deletions charts/ctrlplane/charts/jobs/templates/policy-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ spec:
env:
- name: KAFKA_BROKERS
value: {{ .Values.global.kafkaBrokers | quote }}
- name: REDIS_URL
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-connections
key: REDIS_URL
- name: POSTGRES_URL
valueFrom:
secretKeyRef:
Expand Down
5 changes: 0 additions & 5 deletions charts/ctrlplane/charts/jobs/templates/timeout-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ spec:
env:
- name: KAFKA_BROKERS
value: {{ .Values.global.kafkaBrokers | quote }}
- name: REDIS_URL
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-connections
key: REDIS_URL
- name: POSTGRES_URL
valueFrom:
secretKeyRef:
Expand Down
5 changes: 0 additions & 5 deletions charts/ctrlplane/charts/pty-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ spec:
path: /api/v1/resources/proxy/health
port: http
env:
- name: REDIS_URL
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-connections
key: REDIS_URL
- name: POSTGRES_URL
valueFrom:
secretKeyRef:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,6 @@ spec:

- name: KAFKA_BROKERS
value: {{ .Values.global.kafkaBrokers | quote }}
- name: REDIS_URL
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-connections
key: REDIS_URL
- name: POSTGRES_URL
valueFrom:
secretKeyRef:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ spec:
fieldPath: metadata.name
- name: KAFKA_PARTITION_ID
value: "$(echo $POD_NAME | sed 's/.*-//')"
- name: REDIS_URL
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-connections
key: REDIS_URL
- name: POSTGRES_URL
valueFrom:
secretKeyRef:
Expand Down
3 changes: 0 additions & 3 deletions charts/ctrlplane/templates/_redis.tpl

This file was deleted.

1 change: 0 additions & 1 deletion charts/ctrlplane/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ metadata:
"helm.sh/hook": pre-install,pre-upgrade
data:
POSTGRES_URL: {{ include "ctrlplane.postgresqlUrl" . | b64enc }}
REDIS_URL: {{ include "ctrlplane.redisUrl" . | b64enc }}
{{- if .Values.global.integrations.github.bot.clientSecret }}
GITHUB_BOT_CLIENT_SECRET: {{ .Values.global.integrations.github.bot.clientSecret | b64enc }}
{{- end }}
Expand Down
5 changes: 0 additions & 5 deletions charts/ctrlplane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ global:
labels: {}
annotations: {}

redis:
host: ""
port: "6379"
password: ""

postgresql:
user: "ctrlplane"
password: "ctrlplane"
Expand Down