Skip to content

Commit d2d0fc2

Browse files
committed
Prepare v2.1.5 release
Signed-off-by: Joe Searcy <joe@twr.io>
1 parent 0528a56 commit d2d0fc2

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,26 @@ This release migrates to using the Gunicorn WSGI HTTP Server instead of the defa
2424

2525
## 2.1.4
2626

27-
This release adds the `approve` verb to the RBAC config to account for newer changes to the Kubernetes certificates/CSR API as noted [here](https://github.com/kubernetes/kubernetes/pull/86933). These changes were tested against K8s 1.14, 1.15, 1.16, 1.17, and 1.18.
27+
This release adds the `approve` verb to the RBAC config to account for newer changes to the Kubernetes certificates/CSR API as noted [here](https://github.com/kubernetes/kubernetes/pull/86933). These changes were tested against K8s 1.14, 1.15, 1.16, 1.17, and 1.18.
28+
29+
## 2.1.5
30+
31+
This release adds new policies and enhances several CI workflow components.
32+
33+
### New Policies
34+
35+
- Singleton Pods (Check ID: MT1007)
36+
- Host Port (Check ID: MT1008)
37+
- emptyDir Volume (Check ID: MT1009)
38+
- Host Path (Check ID: MT1010)
39+
- Node Port Range (Check ID: MT2002)
40+
41+
### New CI Features
42+
43+
- Kubernetes Matrix for end-to-end testing. All commits/PR's are now tested against Kubernetes 1.16, 1.17, 1.18, and 1.19
44+
- Rego linting and unit tests
45+
- Code quality anallysis and static code scanning for Security/Best Practices
46+
47+
### Misc Enhancements
48+
49+
- Enhancements for Advanced install workflow with Kustomize

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
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.1.4
19+
MAGTAPE_VERSION := v2.1.5
2020
OPA_VERSION := 0.19.2
2121
KUBE_MGMT_VERSION := 0.11
2222

deploy/install.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ spec:
317317
serviceAccountName: magtape-sa
318318
initContainers:
319319
- name: magtape-init
320-
image: tmobile/magtape-init:v2.1.4
320+
image: tmobile/magtape-init:v2.1.5
321321
command: [/app/magtape-init.py]
322322
imagePullPolicy: Always
323323
env:
@@ -339,7 +339,7 @@ spec:
339339
mountPath: /vwc
340340
containers:
341341
- name: magtape
342-
image: tmobile/magtape:v2.1.4
342+
image: tmobile/magtape:v2.1.5
343343
ports:
344344
- containerPort: 5000
345345
command: ["gunicorn", "magtape:app", "--config=config.py"]

deploy/manifests/magtape-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
serviceAccountName: magtape-sa
1919
initContainers:
2020
- name: magtape-init
21-
image: tmobile/magtape-init:v2.1.4
21+
image: tmobile/magtape-init:v2.1.5
2222
command: [/app/magtape-init.py]
2323
imagePullPolicy: Always
2424
env:
@@ -40,7 +40,7 @@ spec:
4040
mountPath: /vwc
4141
containers:
4242
- name: magtape
43-
image: tmobile/magtape:v2.1.4
43+
image: tmobile/magtape:v2.1.5
4444
ports:
4545
- containerPort: 5000
4646
command: ["gunicorn", "magtape:app", "--config=config.py"]

0 commit comments

Comments
 (0)