Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexGustafsson committed Jan 7, 2025
1 parent c6211cc commit 1ac1465
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion deploy/base/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
fsGroup: 2000
containers:
- name: cupdate
image: ghcr.io/alexgustafsson/cupdate:0.14.0
image: ghcr.io/alexgustafsson/cupdate:0.14.1
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
Expand Down
2 changes: 1 addition & 1 deletion docs/cookbook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace: cupdate

images:
- name: ghcr.io/alexgustafsson/cupdate
newTag: 0.14.0
newTag: 0.14.1

resources:
- namespace.yml
Expand Down
4 changes: 2 additions & 2 deletions docs/cookbook/update-kustomizations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# changes such as the following:
# images:
# - name: ghcr.io/alexgustafsson/cupdate
# newTag: v0.14.0
# newTag: 0.14.1
#
# For all such images, the script will perform a lookup towards Cupdate's API to
# find the latest image and update the manifest in-place if the user whishes to
Expand Down Expand Up @@ -40,7 +40,7 @@ while read -r kustomization; do
# For each image reference tag replacement found in the kustomization, such as
# images:
# - name: ghcr.io/alexgustafsson/cupdate
# newTag: 0.14.0
# newTag: 0.14.1
while read -r reference; do
if [[ -z "$reference" ]]; then
continue
Expand Down
2 changes: 1 addition & 1 deletion docs/docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ docker run --interactive --tty --rm \
--mount type=tmpfs,destination=/tmp \
--env CUPDATE_DOCKER_HOST=unix:///var/run/docker.sock \
--publish 8080:8080 \
ghcr.io/alexgustafsson/cupdate:0.14.0
ghcr.io/alexgustafsson/cupdate:0.14.1
```

To more easily configure Cupdate to your liking and persisting the configuration
Expand Down
2 changes: 1 addition & 1 deletion docs/docker/compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
cupdate:
image: ghcr.io/alexgustafsson/cupdate:0.14.0
image: ghcr.io/alexgustafsson/cupdate:0.14.1
ports:
- 8080:8080
environment:
Expand Down
8 changes: 4 additions & 4 deletions docs/kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ To get started, run the command below to inspect the manifests about to be
applied.

```shell
kubectl apply --dry-run=client -o yaml 'https://github.com/AlexGustafsson/cupdate/deploy?ref=v0.14.0'
kubectl apply --dry-run=client -o yaml 'https://github.com/AlexGustafsson/cupdate/deploy?ref=v0.14.1'
```

Next, run the following command to apply the manifests.

```shell
kubectl apply -k 'https://github.com/AlexGustafsson/cupdate/deploy?ref=v0.14.0'
kubectl apply -k 'https://github.com/AlexGustafsson/cupdate/deploy?ref=v0.14.1'
```

If you're running Kubernetes with RBAC, Cupdate needs additional configuration.
To install Cupdate with support for RBAC, run the following command.

```shell
kubectl apply -k 'https://github.com/AlexGustafsson/cupdate/deploy/overlays/rbac?ref=v0.14.0'
kubectl apply -k 'https://github.com/AlexGustafsson/cupdate/deploy/overlays/rbac?ref=v0.14.1'
```

## Config
Expand All @@ -43,7 +43,7 @@ For even more configurability, build the complete manifests and modify them to
your liking.

```shell
kustomize build 'https://github.com/AlexGustafsson/cupdate/deploy/overlays/rbac?ref=v0.14.0' > cupdate.yaml
kustomize build 'https://github.com/AlexGustafsson/cupdate/deploy/overlays/rbac?ref=v0.14.1' > cupdate.yaml
```

By default, Cupdate will ignore old replica sets kept around by Kubernetes to
Expand Down
2 changes: 1 addition & 1 deletion docs/kubernetes/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace: cupdate
resources:
# NOTE: Update the ref to the tag you want to deploy
# NOTE: The double slash (//) is required by kustomize
- https://github.com/AlexGustafsson/cupdate//deploy/overlays/rbac?timeout=120&ref=v0.14.0
- https://github.com/AlexGustafsson/cupdate//deploy/overlays/rbac?timeout=120&ref=v0.14.1
# Here's a good place to reference a file containing ingress manifests
# - ingress.yaml
#
Expand Down

0 comments on commit 1ac1465

Please sign in to comment.