Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use SPIRE scratch images in favor of alpine images #97

Merged
merged 2 commits into from
Jan 17, 2023
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
2 changes: 1 addition & 1 deletion Dockerfile.add-backend
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gcr.io/spiffe-io/spire-server:1.1.3
FROM ghcr.io/spiffe/spire-server:1.1.3
RUN apk add curl
COPY bin/tornjak-backend tornjak-backend
COPY sample-keys sample-keys
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.add-backend-versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gcr.io/spiffe-io/spire-server:{version}
FROM ghcr.io/spiffe/spire-server:{version}
RUN apk add curl
COPY bin/tornjak-backend tornjak-backend
COPY sample-keys sample-keys
Expand Down
6 changes: 3 additions & 3 deletions docs/spire-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ We first need to use the Tornjak image. This can be done by modifying the image
serviceAccountName: spire-server
containers:
- name: spire-server
image: gcr.io/spiffe-io/spire-server:1.0.0
image: ghcr.io/spiffe/spire-server:1.4.4
args:
- -config
- /run/spire/config/server.conf
Expand All @@ -159,7 +159,7 @@ We first need to use the Tornjak image. This can be done by modifying the image
...
```

We want to replace the image with the Tornjak image: `ghcr.io/spiffe/tornjak-spire-server:1.0.0`
We want to replace the image with the Tornjak image: `ghcr.io/spiffe/tornjak-spire-server:1.4.4`

```
➜ quickstart git:(master) cat server-statefulset.yaml
Expand All @@ -168,7 +168,7 @@ We want to replace the image with the Tornjak image: `ghcr.io/spiffe/tornjak-spi
serviceAccountName: spire-server
containers:
- name: spire-server
image: ghcr.io/spiffe/tornjak-spire-server:1.0.0
image: ghcr.io/spiffe/tornjak-spire-server:1.4.4
args:
- -config
- /run/spire/config/server.conf
Expand Down