Skip to content

Commit

Permalink
Merge pull request #88 from ilrudie/release-2-3-0
Browse files Browse the repository at this point in the history
Prepare v2.3.0 release
  • Loading branch information
ilrudie authored Jan 30, 2021
2 parents 72c5188 + fdaf8a3 commit 6da6edf
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
# its contributors may be used to endorse or promote products derived from this
# software without specific prior written permission.

MAGTAPE_VERSION := v2.3.0-prerelease
OPA_VERSION := 0.23.2
MAGTAPE_VERSION := v2.3.0
OPA_VERSION := 0.25.2
KUBE_MGMT_VERSION := 0.11

REPO_ROOT := $(CURDIR)
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.2.1/deploy/install.yaml
$ kubectl apply -f https://raw.githubusercontent.com/tmobile/magtape/v2.3.0/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.0-prerelease")
metrics.info("app_info", "Application info", version="v2.3.0")

# Set logging config
log = logging.getLogger("werkzeug")
Expand Down
6 changes: 3 additions & 3 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.0-prerelease
image: tmobile/magtape-init:v2.3.0
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.0-prerelease
image: tmobile/magtape:v2.3.0
ports:
- containerPort: 5000
command: ["gunicorn", "magtape:app", "--config=config.py"]
Expand Down Expand Up @@ -405,7 +405,7 @@ spec:
- name: magtape-tls
mountPath: /tls
- name: opa
image: openpolicyagent/opa:0.23.2
image: openpolicyagent/opa:0.25.2
args:
- "run"
- "--server"
Expand Down
6 changes: 3 additions & 3 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.0-prerelease
image: tmobile/magtape-init:v2.3.0
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.0-prerelease
image: tmobile/magtape:v2.3.0
ports:
- containerPort: 5000
command: ["gunicorn", "magtape:app", "--config=config.py"]
Expand Down Expand Up @@ -89,7 +89,7 @@ spec:
- name: magtape-tls
mountPath: /tls
- name: opa
image: openpolicyagent/opa:0.23.2
image: openpolicyagent/opa:0.25.2
args:
- "run"
- "--server"
Expand Down

0 comments on commit 6da6edf

Please sign in to comment.