Skip to content

Commit 6da6edf

Browse files
authored
Merge pull request #88 from ilrudie/release-2-3-0
Prepare v2.3.0 release
2 parents 72c5188 + fdaf8a3 commit 6da6edf

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
# its contributors may be used to endorse or promote products derived from this
1717
# software without specific prior written permission.
1818

19-
MAGTAPE_VERSION := v2.3.0-prerelease
20-
OPA_VERSION := 0.23.2
19+
MAGTAPE_VERSION := v2.3.0
20+
OPA_VERSION := 0.25.2
2121
KUBE_MGMT_VERSION := 0.11
2222

2323
REPO_ROOT := $(CURDIR)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ You can use the following command to install MagTape and the example policies fr
6767
**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
6868

6969
```
70-
$ kubectl apply -f https://raw.githubusercontent.com/tmobile/magtape/v2.2.1/deploy/install.yaml
70+
$ kubectl apply -f https://raw.githubusercontent.com/tmobile/magtape/v2.3.0/deploy/install.yaml
7171
```
7272

7373
#### This will do the following

app/magtape/magtape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
metrics = PrometheusMetrics(app, defaults_prefix="magtape")
4242

4343
# Static information as metric
44-
metrics.info("app_info", "Application info", version="v2.3.0-prerelease")
44+
metrics.info("app_info", "Application info", version="v2.3.0")
4545

4646
# Set logging config
4747
log = logging.getLogger("werkzeug")

deploy/install.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ spec:
337337
runAsGroup: 1900
338338
initContainers:
339339
- name: magtape-init
340-
image: tmobile/magtape-init:v2.3.0-prerelease
340+
image: tmobile/magtape-init:v2.3.0
341341
command: [/app/magtape-init.py]
342342
imagePullPolicy: Always
343343
securityContext:
@@ -361,7 +361,7 @@ spec:
361361
mountPath: /vwc
362362
containers:
363363
- name: magtape
364-
image: tmobile/magtape:v2.3.0-prerelease
364+
image: tmobile/magtape:v2.3.0
365365
ports:
366366
- containerPort: 5000
367367
command: ["gunicorn", "magtape:app", "--config=config.py"]
@@ -405,7 +405,7 @@ spec:
405405
- name: magtape-tls
406406
mountPath: /tls
407407
- name: opa
408-
image: openpolicyagent/opa:0.23.2
408+
image: openpolicyagent/opa:0.25.2
409409
args:
410410
- "run"
411411
- "--server"

deploy/manifests/magtape-deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
runAsGroup: 1900
2222
initContainers:
2323
- name: magtape-init
24-
image: tmobile/magtape-init:v2.3.0-prerelease
24+
image: tmobile/magtape-init:v2.3.0
2525
command: [/app/magtape-init.py]
2626
imagePullPolicy: Always
2727
securityContext:
@@ -45,7 +45,7 @@ spec:
4545
mountPath: /vwc
4646
containers:
4747
- name: magtape
48-
image: tmobile/magtape:v2.3.0-prerelease
48+
image: tmobile/magtape:v2.3.0
4949
ports:
5050
- containerPort: 5000
5151
command: ["gunicorn", "magtape:app", "--config=config.py"]
@@ -89,7 +89,7 @@ spec:
8989
- name: magtape-tls
9090
mountPath: /tls
9191
- name: opa
92-
image: openpolicyagent/opa:0.23.2
92+
image: openpolicyagent/opa:0.25.2
9393
args:
9494
- "run"
9595
- "--server"

0 commit comments

Comments
 (0)