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
7 changes: 2 additions & 5 deletions charts/ctrlplane/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ dependencies:
- name: migrations
repository: file://charts/migrations
version: 0.1.6
- name: event-worker
repository: file://charts/event-worker
version: 0.1.7
- name: event-queue
repository: file://charts/event-queue
version: 0.1.7
Expand All @@ -23,5 +20,5 @@ dependencies:
- name: workspace-engine
repository: file://charts/workspace-engine
version: 0.1.0
digest: sha256:d7a28c69532ba045f866918f5b769f57bb791f6d5eb1209c3e3dbb751c7207b3
generated: "2025-10-01T19:24:20.209087-04:00"
digest: sha256:0e91f273ef3731567ede504f5dee53983823962a69f54d2e13047e221253f98b
generated: "2025-10-20T11:22:56.849671-07:00"
6 changes: 1 addition & 5 deletions 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.4.13
version: 0.5.0
appVersion: "1.16.0"

maintainers:
Expand All @@ -23,10 +23,6 @@ dependencies:
version: "*.*.*"
repository: file://charts/migrations
condition: migrations.install
- name: event-worker
condition: event-worker.install
version: "*.*.*"
repository: "file://charts/event-worker"
- name: event-queue
condition: event-queue.install
version: "*.*.*"
Expand Down
23 changes: 0 additions & 23 deletions charts/ctrlplane/charts/event-worker/.helmignore

This file was deleted.

6 changes: 0 additions & 6 deletions charts/ctrlplane/charts/event-worker/Chart.yaml

This file was deleted.

62 changes: 0 additions & 62 deletions charts/ctrlplane/charts/event-worker/templates/_helpers.tpl

This file was deleted.

92 changes: 0 additions & 92 deletions charts/ctrlplane/charts/event-worker/templates/deployment.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions charts/ctrlplane/charts/event-worker/templates/hpa.yaml

This file was deleted.

This file was deleted.

39 changes: 0 additions & 39 deletions charts/ctrlplane/charts/event-worker/values.yaml

This file was deleted.

12 changes: 6 additions & 6 deletions charts/ctrlplane/charts/pty-proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "event-worker.fullname" . }}
name: {{ include "pty-proxy.fullname" . }}
labels:
{{- include "event-worker.labels" . | nindent 4 }}
{{- include "pty-proxy.labels" . | nindent 4 }}
{{- if .Values.deployment.labels -}}
{{- toYaml .Values.deployment.labels | nindent 4 }}
{{- end }}
Expand All @@ -17,17 +17,17 @@ spec:
selector:
matchLabels:
{{- include "ctrlplane.selectorLabels" $ | nindent 6 }}
{{- include "event-worker.labels" . | nindent 6 }}
{{- include "pty-proxy.labels" . | nindent 6 }}
template:
metadata:
labels:
{{- include "event-worker.labels" . | nindent 8 }}
{{- include "pty-proxy.labels" . | nindent 8 }}
annotations:
{{- if .Values.pod.annotations -}}
{{- toYaml .Values.pod.annotations | nindent 8 }}
{{- end }}
spec:
serviceAccountName: {{ include "event-worker.serviceAccountName" . }}
serviceAccountName: {{ include "pty-proxy.serviceAccountName" . }}
{{- if .tolerations }}
tolerations:
{{- toYaml .tolerations | nindent 8 }}
Expand All @@ -36,7 +36,7 @@ spec:
{{- include "ctrlplane.priorityClassName" . | nindent 6 }}
{{- include "ctrlplane.podSecurityContext" .Values.pod.securityContext | nindent 6 }}
containers:
- name: event-worker
- name: pty-proxy
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
ports:
- name: http
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "event-worker.serviceAccountName" . }}
name: {{ include "pty-proxy.serviceAccountName" . }}
namespace: {{ $.Release.Namespace }}
labels:
{{- include "event-worker.labels" . | nindent 4 }}
{{- include "pty-proxy.labels" . | nindent 4 }}
{{- if .Values.serviceAccount.labels -}}
{{- toYaml .Values.serviceAccount.labels | nindent 4 }}
{{- end }}
Expand Down
3 changes: 0 additions & 3 deletions charts/ctrlplane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ ingress:
labels: {}
annotations: {}

event-worker:
install: true

event-queue:
install: true

Expand Down