Skip to content

Commit

Permalink
Merge pull request #88 from philips-labs/fix-server-switch-oidc-image
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofranssen authored Dec 16, 2022
2 parents 81c3782 + 5cbbae6 commit 9a11288
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/spire/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ description: |
- --service-account-signing-key-file=/run/config/pki/sa.key
```
type: application
version: 0.7.5
version: 0.7.6
appVersion: "1.5.3"
keywords: ["spiffe", "spire", "spire-server", "spire-agent", "oidc"]
home: https://github.com/philips-labs/helm-charts/charts/spire
Expand Down
9 changes: 5 additions & 4 deletions charts/spire/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<!-- This README.md is generated. -->

![Version: 0.7.5](https://img.shields.io/badge/Version-0.7.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.3](https://img.shields.io/badge/AppVersion-1.5.3-informational?style=flat-square)
![Version: 0.7.6](https://img.shields.io/badge/Version-0.7.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.3](https://img.shields.io/badge/AppVersion-1.5.3-informational?style=flat-square)

A Helm chart for deploying spire-server and spire-agent.

Expand Down Expand Up @@ -62,7 +62,7 @@ Kubernetes: `>=1.21.0-0`
| csiDriver.image.pullPolicy | string | `"IfNotPresent"` | |
| csiDriver.image.registry | string | `"ghcr.io"` | |
| csiDriver.image.repository | string | `"spiffe/spiffe-csi-driver"` | |
| csiDriver.image.version | string | `"0.2.0"` | |
| csiDriver.image.version | string | `"0.2.1"` | |
| csiDriver.resources | object | `{}` | |
| fullnameOverride | string | `""` | |
| imagePullSecrets | list | `[]` | |
Expand All @@ -82,8 +82,8 @@ Kubernetes: `>=1.21.0-0`
| oidc.config.logLevel | string | `"info"` | |
| oidc.enabled | bool | `false` | |
| oidc.image.pullPolicy | string | `"IfNotPresent"` | |
| oidc.image.registry | string | `"gcr.io"` | |
| oidc.image.repository | string | `"spiffe-io/oidc-discovery-provider"` | |
| oidc.image.registry | string | `"ghcr.io"` | |
| oidc.image.repository | string | `"spiffe/oidc-discovery-provider"` | |
| oidc.image.version | string | `""` | |
| oidc.insecureScheme.enabled | bool | `false` | |
| oidc.insecureScheme.nginx.image.pullPolicy | string | `"IfNotPresent"` | |
Expand Down Expand Up @@ -116,6 +116,7 @@ Kubernetes: `>=1.21.0-0`
| server.image.repository | string | `"spiffe/spire-server"` | |
| server.image.version | string | `""` | |
| server.nodeSelector."kubernetes.io/arch" | string | `"amd64"` | |
| server.podAnnotations | object | `{}` | |
| server.podSecurityContext | object | `{}` | |
| server.replicaCount | int | `1` | |
| server.resources | object | `{}` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/spire/templates/server-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
{{- include "spire.server.selectorLabels" . | nindent 6 }}
template:
metadata:
{{- with .Values.oidc.podAnnotations }}
{{- with .Values.server.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
12 changes: 7 additions & 5 deletions charts/spire/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ server:
port: 8081
annotations: {}

podAnnotations: {}

podSecurityContext: {}
# fsGroup: 2000

Expand Down Expand Up @@ -129,7 +131,7 @@ csiDriver:
registry: ghcr.io
repository: spiffe/spiffe-csi-driver
pullPolicy: IfNotPresent
version: 0.2.0
version: 0.2.1
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
Expand Down Expand Up @@ -165,10 +167,10 @@ oidc:
replicaCount: 1

image:
registry: gcr.io
repository: spiffe-io/oidc-discovery-provider
# registry: ghcr.io
# repository: spiffe/oidc-discovery-provider
# registry: gcr.io
# repository: spiffe-io/oidc-discovery-provider
registry: ghcr.io
repository: spiffe/oidc-discovery-provider
pullPolicy: IfNotPresent
version: ""

Expand Down

0 comments on commit 9a11288

Please sign in to comment.