Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chart fix PR #80

Merged
merged 4 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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 helm/teleport-kube-agent/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if serviceAccount is not defined or serviceAccount.name is empty, use .Release.N
{{- if .Values.teleportVersionOverride -}}
{{- .Values.teleportVersionOverride -}}
{{- else -}}
{{- .Chart.Version -}}
{{- .Chart.AppVersion -}}
{{- end -}}
{{- end -}}

Expand Down
18 changes: 18 additions & 0 deletions helm/teleport-kube-agent/templates/networkpolicy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: {{ .Release.Name }}
namespace: {{ .Release.Namespace }}
labels:
app: {{ .Release.Name }}
spec:
egress:
- {}
ingress:
- {}
podSelector:
matchLabels:
app: {{ .Release.Name }}
policyTypes:
- Egress
- Ingress
4 changes: 2 additions & 2 deletions helm/teleport-kube-agent/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@
"create": {
"$id": "#/properties/jamfCredentialsSecret/create",
"type": "boolean",
"default": true
"default": false
},
"name": {
"$id": "#/properties/jamfCredentialsSecret/name",
Expand Down Expand Up @@ -828,7 +828,7 @@
"noProxy": {
"type": ["null", "string"]
}
}
}
},
"cluster": {
"$id": "#/properties/cluster",
Expand Down
2 changes: 1 addition & 1 deletion helm/teleport-kube-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ jamfCredentialsSecret:
# Kubernetes `Secret` containing the Jamf Pro API Client Secret.
# If false, you must create a Kubernetes Secret with the configured name in
# the Helm release namespace.
create: true
create: false
# jamfCredentialsSecret.name(string) -- is the name of the Kubernetes Secret
# containing the Jamf Pro API Client Secret used by the chart.
#
Expand Down