Skip to content

Commit

Permalink
Merge pull request #106 from phenixblue/prepare-v1.5.3-release
Browse files Browse the repository at this point in the history
Prepare v1.5.3 release
  • Loading branch information
phenixblue authored Aug 30, 2023
2 parents bbd2773 + 3b8860f commit b596f22
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# NOTE: The version for both `imageswap-init` and `imageswap` should be identical for now.
# Some effort will need to be put in to be able to distringuish changes to one vs. the other
# in CI/Release steps.
IMAGESWAP_VERSION := v1.5.2
IMAGESWAP_INIT_VERSION := v1.5.2
IMAGESWAP_VERSION := v1.5.3
IMAGESWAP_INIT_VERSION := v1.5.3

REPO_ROOT := $(CURDIR)
APP_NAME ?= "imageswap.py"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ You can use the following command to install ImageSwap from this repo with sane
**NOTE:** The quickstart installation is not meant for production use. Please read through the [Cautions](#cautions) sections, and as always, use your best judgement when configuring ImageSwap for production scenarios.

```shell
$ kubectl apply -f https://raw.githubusercontent.com/phenixblue/imageswap-webhook/v1.5.2/deploy/install.yaml
$ kubectl apply -f https://raw.githubusercontent.com/phenixblue/imageswap-webhook/v1.5.3/deploy/install.yaml
```

#### This will do the following
Expand Down
2 changes: 1 addition & 1 deletion app/imageswap/imageswap.py
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ def swap_image(container_spec):

def main():

app.logger.info("ImageSwap v1.5.2 Startup")
app.logger.info("ImageSwap v1.5.3 Startup")

app.run(
host="0.0.0.0",
Expand Down
4 changes: 2 additions & 2 deletions deploy/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ spec:
runAsGroup: 1898
initContainers:
- name: imageswap-init
image: thewebroot/imageswap-init:v1.5.2
image: thewebroot/imageswap-init:v1.5.3
command: [/app/imageswap-init.py]
imagePullPolicy: Always
securityContext:
Expand All @@ -299,7 +299,7 @@ spec:
mountPath: /mwc
containers:
- name: imageswap
image: thewebroot/imageswap:v1.5.2
image: thewebroot/imageswap:v1.5.3
ports:
- containerPort: 5000
command: ["gunicorn", "imageswap:app", "--config=config.py"]
Expand Down
4 changes: 2 additions & 2 deletions deploy/manifests/imageswap-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
runAsGroup: 1898
initContainers:
- name: imageswap-init
image: thewebroot/imageswap-init:v1.5.2
image: thewebroot/imageswap-init:v1.5.3
command: [/app/imageswap-init.py]
imagePullPolicy: Always
securityContext:
Expand All @@ -46,7 +46,7 @@ spec:
mountPath: /mwc
containers:
- name: imageswap
image: thewebroot/imageswap:v1.5.2
image: thewebroot/imageswap:v1.5.3
ports:
- containerPort: 5000
command: ["gunicorn", "imageswap:app", "--config=config.py"]
Expand Down

0 comments on commit b596f22

Please sign in to comment.