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
4 changes: 2 additions & 2 deletions charts/ziti-router/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
appVersion: 1.6.7
appVersion: 1.6.8
description: Host an OpenZiti router in Kubernetes
name: ziti-router
type: application
version: 1.5.0
version: 1.5.1
3 changes: 2 additions & 1 deletion charts/ziti-router/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- README.md generated by helm-docs from README.md.gotmpl -->
# ziti-router

![Version: 1.5.0](https://img.shields.io/badge/Version-1.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.6.7](https://img.shields.io/badge/AppVersion-1.6.7-informational?style=flat-square)
![Version: 1.5.1](https://img.shields.io/badge/Version-1.5.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.6.8](https://img.shields.io/badge/AppVersion-1.6.8-informational?style=flat-square)

Host an OpenZiti router in Kubernetes

Expand Down Expand Up @@ -33,6 +33,7 @@ helm upgrade \
--set ctrl.endpoint=ctrl.ziti.example.com:443 \
--set edge.advertisedHost=router1.ziti.example.com
```

### Ingress TLS Passthrough

All router TLS listeners must terminate TLS, so it's essential that Ingress resources use TLS passthrough.
Expand Down
1 change: 1 addition & 0 deletions charts/ziti-router/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ helm upgrade \
--set ctrl.endpoint=ctrl.ziti.example.com:443 \
--set edge.advertisedHost=router1.ziti.example.com
```

### Ingress TLS Passthrough

All router TLS listeners must terminate TLS, so it's essential that Ingress resources use TLS passthrough.
Expand Down
10 changes: 10 additions & 0 deletions charts/ziti-router/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,16 @@ spec:
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- else }}
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
topologyKey: kubernetes.io/hostname
labelSelector:
matchLabels:
app.kubernetes.io/name: {{ include "ziti-router.name" . }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
Expand Down
Loading