Skip to content

Commit

Permalink
Bump spire chart in example to 0.6.3
Browse files Browse the repository at this point in the history
Signed-off-by: Marco Franssen <marco.franssen@philips.com>
  • Loading branch information
marcofranssen committed Nov 15, 2022
1 parent 26e9145 commit 35041f6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ helm repo update
Now we will deploy the Helm charts to our Kubernetes cluster.

```bash
helm -n my-spire install spire philips-labs/spire --create-namespace -f k8s/spire-values.yaml
helm -n spire-system upgrade spire philips-labs/spire --version 0.6.3 --create-namespace --install -f k8s/spire-values.yaml
helm -n my-traefik install traefik traefik/traefik --create-namespace -f k8s/traefik-values.yaml
helm -n my-vault install vault hashicorp/vault --create-namespace -f k8s/vault-values.yaml
```
Expand Down
38 changes: 19 additions & 19 deletions example/k8s/spire-values.yaml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
server:
config:
logLevel: debug
jwtIssuer: spire-oidc.spire-system

dataStorage:
enabled: false

agent:
config:
logLevel: debug

oidc:
enabled: true
config:
logLevel: debug

domains:
- localhost
- oidc-spire.dev.localhost

acme:
tosAccepted: true
emailAddress: my-email@domain.tld
directoryUrl: https://acme-staging-v02.api.letsencrypt.org/directory

service:
type: ClusterIP

logLevel: DEBUG

insecureScheme:
enabled: true

acme:
tosAccepted: true
emailAddress: marco.franssen@philips.com
directoryUrl: https://acme-staging-v02.api.letsencrypt.org/directory

jwtIssuer: spire-oidc.my-spire

domains:
- localhost
- spire-oidc.my-spire
- spire-oidc.my-spire.svc.cluster.local
- oidc-spire.dev.localhost

spire:
clusterName: "dev-cluster"
trustDomain: "dev.localhost"
agent:
logLevel: DEBUG
server:
logLevel: DEBUG
2 changes: 1 addition & 1 deletion example/vault/modules/jwt-auth/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ variable "roles" {
variable "oidc_discovery_url" {
type = string
description = "The discovery url of the oidc service"
default = "http://spire-oidc.my-spire"
default = "http://spire-oidc.spire-system"
}

0 comments on commit 35041f6

Please sign in to comment.