Skip to content

Commit

Permalink
Merge pull request #100 from phenixblue/prep-for-v2.3.2
Browse files Browse the repository at this point in the history
Prepare v2.3.2 release
  • Loading branch information
phenixblue authored Mar 28, 2021
2 parents 3a14f4a + f836f2a commit 427c9e0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# its contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.

MAGTAPE_VERSION := v2.3.1
MAGTAPE_VERSION := v2.3.2
OPA_VERSION := 0.25.2
KUBE_MGMT_VERSION := 0.11

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ You can use the following command to install MagTape and the example policies fr
**NOTE:** The `master` branch of this repository is considered a working branch and may not always be in a functioning state. It's best to select a specific tag for a stable version of MagTape

```
$ kubectl apply -f https://raw.githubusercontent.com/tmobile/magtape/v2.3.1/deploy/install.yaml
$ kubectl apply -f https://raw.githubusercontent.com/tmobile/magtape/v2.3.2/deploy/install.yaml
```

#### This will do the following
Expand Down
2 changes: 1 addition & 1 deletion app/magtape/magtape.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
metrics = PrometheusMetrics(app, defaults_prefix="magtape")

# Static information as metric
metrics.info("app_info", "Application info", version="v2.3.1")
metrics.info("app_info", "Application info", version="v2.3.2")

# Set logging config
log = logging.getLogger("werkzeug")
Expand Down
4 changes: 2 additions & 2 deletions deploy/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ spec:
runAsGroup: 1900
initContainers:
- name: magtape-init
image: tmobile/magtape-init:v2.3.1
image: tmobile/magtape-init:v2.3.2
command: [/app/magtape-init.py]
imagePullPolicy: Always
securityContext:
Expand All @@ -361,7 +361,7 @@ spec:
mountPath: /vwc
containers:
- name: magtape
image: tmobile/magtape:v2.3.1
image: tmobile/magtape:v2.3.2
ports:
- containerPort: 5000
command: ["gunicorn", "magtape:app", "--config=config.py"]
Expand Down
4 changes: 2 additions & 2 deletions deploy/manifests/magtape-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
runAsGroup: 1900
initContainers:
- name: magtape-init
image: tmobile/magtape-init:v2.3.1
image: tmobile/magtape-init:v2.3.2
command: [/app/magtape-init.py]
imagePullPolicy: Always
securityContext:
Expand All @@ -45,7 +45,7 @@ spec:
mountPath: /vwc
containers:
- name: magtape
image: tmobile/magtape:v2.3.1
image: tmobile/magtape:v2.3.2
ports:
- containerPort: 5000
command: ["gunicorn", "magtape:app", "--config=config.py"]
Expand Down

0 comments on commit 427c9e0

Please sign in to comment.