Skip to content

Commit

Permalink
Remove antiquated kube-lego references
Browse files Browse the repository at this point in the history
[kube-lego](https://github.com/jetstack/kube-lego) was the
precursor to cert-manager, and has been dead for years and
years now
  • Loading branch information
yuvipanda committed Jan 17, 2024
1 parent bb147d4 commit 3018cc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
4 changes: 0 additions & 4 deletions helm-chart/binderhub/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -519,10 +519,6 @@ properties:
type: boolean
description: |
TODO
type:
type: string
description: |
TODO
annotations:
type: object
additionalProperties: false
Expand Down
15 changes: 2 additions & 13 deletions helm-chart/binderhub/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: binderhub
{{- if or (and .Values.ingress.https.enabled (eq .Values.ingress.https.type "kube-lego")) .Values.ingress.annotations }}
{{- with .Values.ingress.annotations }}
annotations:
{{- if and .Values.ingress.https.enabled (eq .Values.ingress.https.type "kube-lego") }}
kubernetes.io/tls-acme: "true"
{{- end }}
{{- with .Values.ingress.annotations }}
{{- . | toYaml | nindent 4 }}
{{- end }}
{{- end }}
Expand All @@ -31,14 +27,7 @@ spec:
host: {{ . | quote }}
{{- end }}
{{- end }}
{{- if and .Values.ingress.https.enabled (eq .Values.ingress.https.type "kube-lego") }}
tls:
- secretName: kubelego-tls-binder-{{ .Release.Name }}
hosts:
{{- range .Values.ingress.hosts }}
- {{ . | quote }}
{{- end }}
{{- else if .Values.ingress.tls }}
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
- hosts:
Expand Down

0 comments on commit 3018cc5

Please sign in to comment.