Skip to content

Commit 4e92788

Browse files
committed
Merge branch 'switch-to-ghcr'
2 parents 161152c + 4e8f51c commit 4e92788

4 files changed

Lines changed: 18 additions & 17 deletions

File tree

charts/spire/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ description: |
2727
- --service-account-signing-key-file=/run/config/pki/sa.key
2828
```
2929
type: application
30-
version: 0.5.4
31-
appVersion: "1.4.4"
32-
keywords: ["spiffe", "spire", "spire-server", "spire-agent"]
30+
version: 0.5.5
31+
appVersion: "1.5.0"
32+
keywords: ["spiffe", "spire", "spire-server", "spire-agent", "oidc"]
3333
home: https://github.com/philips-labs/helm-charts/charts/spire
3434
sources:
3535
- https://github.com/philips-labs/helm-charts/charts/spire

charts/spire/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
![Version: 0.5.4](https://img.shields.io/badge/Version-0.5.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.4.4](https://img.shields.io/badge/AppVersion-1.4.4-informational?style=flat-square)
5+
![Version: 0.5.5](https://img.shields.io/badge/Version-0.5.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.5.0](https://img.shields.io/badge/AppVersion-1.5.0-informational?style=flat-square)
66

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

@@ -52,8 +52,8 @@ Kubernetes: `>=1.21.0-0`
5252
|-----|------|---------|-------------|
5353
| affinity | object | `{}` | |
5454
| agent.image.pullPolicy | string | `"IfNotPresent"` | |
55-
| agent.image.registry | string | `"gcr.io"` | |
56-
| agent.image.repository | string | `"spiffe-io/spire-agent"` | |
55+
| agent.image.registry | string | `"ghcr.io"` | |
56+
| agent.image.repository | string | `"spiffe/spire-agent"` | |
5757
| agent.image.version | string | `""` | |
5858
| agent.nodeSelector."kubernetes.io/arch" | string | `"amd64"` | |
5959
| agent.resources | object | `{}` | |
@@ -84,8 +84,8 @@ Kubernetes: `>=1.21.0-0`
8484
| oidc.domains[3] | string | `"oidc-discovery.example.org"` | |
8585
| oidc.enabled | bool | `false` | |
8686
| oidc.image.pullPolicy | string | `"IfNotPresent"` | |
87-
| oidc.image.registry | string | `"gcr.io"` | |
88-
| oidc.image.repository | string | `"spiffe-io/oidc-discovery-provider"` | |
87+
| oidc.image.registry | string | `"ghcr.io"` | |
88+
| oidc.image.repository | string | `"spiffe/spire-oidc-provider"` | |
8989
| oidc.image.version | string | `""` | |
9090
| oidc.insecureScheme.enabled | bool | `false` | |
9191
| oidc.insecureScheme.nginx.image.pullPolicy | string | `"IfNotPresent"` | |
@@ -108,8 +108,8 @@ Kubernetes: `>=1.21.0-0`
108108
| server.dataStorage.size | string | `"1Gi"` | |
109109
| server.dataStorage.storageClass | string | `nil` | |
110110
| server.image.pullPolicy | string | `"IfNotPresent"` | |
111-
| server.image.registry | string | `"gcr.io"` | |
112-
| server.image.repository | string | `"spiffe-io/spire-server"` | |
111+
| server.image.registry | string | `"ghcr.io"` | |
112+
| server.image.repository | string | `"spiffe/spire-server"` | |
113113
| server.image.version | string | `""` | |
114114
| server.nodeSelector."kubernetes.io/arch" | string | `"amd64"` | |
115115
| server.resources | object | `{}` | |

charts/spire/templates/server-configmap.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ data:
1818
{{- if eq (.Values.oidc.enabled | toString) "true" }}
1919
jwt_issuer = "{{ .Values.oidc.jwtIssuer }}"
2020
{{ end }}
21-
default_svid_ttl = "1h"
21+
default_x509_svid_ttl = "1h"
22+
default_jwt_svid_ttl = "1h"
2223
ca_subject = {
2324
country = ["NL"],
2425
organization = ["EXAMPLE"],

charts/spire/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ workloadRegistrar:
3333

3434
server:
3535
image:
36-
registry: gcr.io
37-
repository: spiffe-io/spire-server
36+
registry: ghcr.io
37+
repository: spiffe/spire-server
3838
pullPolicy: IfNotPresent
3939
# Overrides the image tag whose default is the chart appVersion.
4040
version: ""
@@ -104,8 +104,8 @@ oidc:
104104
enabled: false
105105

106106
image:
107-
registry: gcr.io
108-
repository: spiffe-io/oidc-discovery-provider
107+
registry: ghcr.io
108+
repository: spiffe/spire-oidc-provider
109109
pullPolicy: IfNotPresent
110110
version: ""
111111

@@ -158,8 +158,8 @@ oidc:
158158

159159
agent:
160160
image:
161-
registry: gcr.io
162-
repository: spiffe-io/spire-agent
161+
registry: ghcr.io
162+
repository: spiffe/spire-agent
163163
pullPolicy: IfNotPresent
164164
# Overrides the image tag whose default is the chart appVersion.
165165
version: ""

0 commit comments

Comments
 (0)