Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Helm service additional spec #192

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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 deploy/charts/kube-oidc-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: "v0.3.0"
description: A Helm chart for kube-oidc-proxy
home: https://github.com/jetstack/kube-oidc-proxy
name: kube-oidc-proxy
version: 0.3.1
version: 0.3.2
maintainers:
- name: mhrabovcin
- name: joshvanl
3 changes: 3 additions & 0 deletions deploy/charts/kube-oidc-proxy/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ spec:
selector:
app.kubernetes.io/name: {{ include "kube-oidc-proxy.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
{{- with .Values.service.additionalSpec }}
{{- toYaml . | nindent 2 }}
{{- end }}
7 changes: 6 additions & 1 deletion deploy/charts/kube-oidc-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,19 @@ fullnameOverride: ""
service:
type: ClusterIP
port: 443
annotations:
annotations: {}
# You can use this field to add annotations to the Service.
# Define it in a key-value pairs. E.g.
# service.beta.kubernetes.io/aws-load-balancer-internal: true

loadBalancerIP: ""
loadBalancerSourceRanges: []

additionalSpec: {}
# You can use this field to add additional spec parametes to the Service.
# Define it in a key-value pairs. E.g.
# externalTrafficPolicy: Local

tls:
# `secretName` must be a name of Secret of TLS type. If not provided a
# self-signed certificate will get generated.
Expand Down