Skip to content
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ python3 src/generator.py

*This is done automatically in the Docker container build process.*

To update the Kubernetes deployment file, update the deployment template in `template/k8s.yml`.
An updated `k8s/k8s.yml` will then be automatically generated on the next release.

## Contributing

We welcome contributions of all kinds, from **code** and **documentation** to **bug reports** and **feedback**!
Expand Down
6 changes: 3 additions & 3 deletions k8s/k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
app.kubernetes.io/part-of: ctfpilot
app.kubernetes.io/name: error-fallback
app.kubernetes.io/version: 1.1.0
app.kubernetes.io/version: 1.2.0-r.1
app.kubernetes.io/component: challenges
ctfpilot.com/component: error-fallback

Expand All @@ -25,7 +25,7 @@ spec:
automountServiceAccountToken: false
containers:
- name: error-fallback
image: ctfpilot/error-fallback:1.1.0
image: ghcr.io/ctfpilot/error-fallback:1.2.0-r.1
imagePullPolicy: Always
ports:
- name: http
Expand Down Expand Up @@ -57,7 +57,7 @@ metadata:
labels:
app.kubernetes.io/part-of: ctfpilot
app.kubernetes.io/name: error-fallback
app.kubernetes.io/version: 1.1.0
app.kubernetes.io/version: 1.2.0-r.1
app.kubernetes.io/component: challenges
ctfpilot.com/component: error-fallback
spec:
Expand Down
2 changes: 1 addition & 1 deletion template/k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
automountServiceAccountToken: false
containers:
- name: error-fallback
image: ctfpilot/error-fallback:{ .Version }
image: ghcr.io/ctfpilot/error-fallback:{ .Version }
imagePullPolicy: Always
ports:
- name: http
Expand Down
Loading