Skip to content

Commit

Permalink
[pomerium-console] update to v0.17 (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
travisgroth authored Mar 21, 2022
1 parent 292d589 commit 09d9e14
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/pomerium-console/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 7.1.0
version: 8.0.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.16.0
appVersion: 0.17.0

maintainers:
- name: Pomerium Developers
Expand Down
8 changes: 5 additions & 3 deletions charts/pomerium-console/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pomerium-console

![Version: 7.1.0](https://img.shields.io/badge/Version-7.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.16.0](https://img.shields.io/badge/AppVersion-0.16.0-informational?style=flat-square)
![Version: 8.0.0](https://img.shields.io/badge/Version-8.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.17.0](https://img.shields.io/badge/AppVersion-0.17.0-informational?style=flat-square)

Pomerium Enterprise Console

Expand All @@ -27,7 +27,8 @@ helm install pomerium-enterprise/pomerium-console \
--set config.sharedSecret=ZGVhZGJlZWZkZWFkYmVlZmRlYWRiZWVmCg== \
--set config.databaseEncryptionKey=hDiBsQ6MJFr2y9jhT6c2Uu3lHw9/IpULfBJyesjPWpE= \
--set config.authenticateServiceUrl=https://authenticate.localhost.pomerium.io \
--set config.audience=console.localhost.pomerium.io
--set config.audience=console.localhost.pomerium.io \
--set config.licenseKey=XXXXXXXXXXXXXXXXX
```

## Values
Expand All @@ -44,7 +45,8 @@ helm install pomerium-enterprise/pomerium-console \
| config.authenticateServiceUrl | string | `""` | **Required** for device identity enrollment. If set, you do not need to set signingKey. |
| config.customerId | string | `""` | Override default customerId |
| config.databaseEncryptionKey | string | `""` | **Required** encryption key for protecting sensitive data in the database |
| config.databrokerServiceUrl | string | `https://pomerium-databroker.[release namespace].svc.cluster.local` | Override the URL default to the Pomerium Databroker service |
| config.databrokerServiceUrl | string | `https://pomerium-databroker.[release namespace].svc.cluster.local` | Override the URL default to the Pomerium Cache service |
| config.licenseKey | string | `""` | **Required** license key for your Pomerium Enterprise install. |
| config.prometheusUrl | string | `""` | Set URL for external prometheus server. An embedded server is used if left unset. |
| config.sharedSecret | string | `""` | **Required** Secures communication with the databroker. Must match Pomerium `shared_secret` parameter. |
| config.signingKey | string | `""` | **Required** if `config.authenticateServiceUrl` is unset. Set the public key for verifying the Pomerium attestation JWT header |
Expand Down
3 changes: 2 additions & 1 deletion charts/pomerium-console/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ helm install pomerium-enterprise/pomerium-console \
--set config.sharedSecret=ZGVhZGJlZWZkZWFkYmVlZmRlYWRiZWVmCg== \
--set config.databaseEncryptionKey=hDiBsQ6MJFr2y9jhT6c2Uu3lHw9/IpULfBJyesjPWpE= \
--set config.authenticateServiceUrl=https://authenticate.localhost.pomerium.io \
--set config.audience=console.localhost.pomerium.io
--set config.audience=console.localhost.pomerium.io \
--set config.licenseKey=XXXXXXXXXXXXXXXXX
```

{{ template "chart.valuesSection" . }}
1 change: 1 addition & 0 deletions charts/pomerium-console/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Expand the name of the chart.
{{- required "config.sharedSecret must be set" .Values.config.sharedSecret }}
{{- required "config.databaseEncryptionKey must be set" .Values.config.databaseEncryptionKey }}
{{- required "config.audience must be set" .Values.config.audience }}
{{- required "config.licenseKey" .Values.config.licenseKey -}}
{{ if not (or .Values.config.signingKey .Values.config.authenticateServiceUrl)}}
{{ fail "config.signingKey or config.authenticateServiceUrl must be set" }}
{{- end }}
Expand Down
2 changes: 2 additions & 0 deletions charts/pomerium-console/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,8 @@ config:
audience: ""
# -- **Required** for device identity enrollment. If set, you do not need to set signingKey.
authenticateServiceUrl: ""
# -- **Required** license key for your Pomerium Enterprise install.
licenseKey: ""
prometheus:
# -- Enable using an embedded prometheus service if no external URL is provided
enabled: true
Expand Down

0 comments on commit 09d9e14

Please sign in to comment.