Skip to content

Commit

Permalink
Prepare v2.1.5 release
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Searcy <joe@twr.io>
  • Loading branch information
phenixblue committed Sep 24, 2020
1 parent 0528a56 commit d2d0fc2
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,26 @@ This release migrates to using the Gunicorn WSGI HTTP Server instead of the defa

## 2.1.4

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.
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.

## 2.1.5

This release adds new policies and enhances several CI workflow components.

### New Policies

- Singleton Pods (Check ID: MT1007)
- Host Port (Check ID: MT1008)
- emptyDir Volume (Check ID: MT1009)
- Host Path (Check ID: MT1010)
- Node Port Range (Check ID: MT2002)

### New CI Features

- 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
- Rego linting and unit tests
- Code quality anallysis and static code scanning for Security/Best Practices

### Misc Enhancements

- Enhancements for Advanced install workflow with Kustomize
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.1.4
MAGTAPE_VERSION := v2.1.5
OPA_VERSION := 0.19.2
KUBE_MGMT_VERSION := 0.11

Expand Down
4 changes: 2 additions & 2 deletions deploy/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ spec:
serviceAccountName: magtape-sa
initContainers:
- name: magtape-init
image: tmobile/magtape-init:v2.1.4
image: tmobile/magtape-init:v2.1.5
command: [/app/magtape-init.py]
imagePullPolicy: Always
env:
Expand All @@ -339,7 +339,7 @@ spec:
mountPath: /vwc
containers:
- name: magtape
image: tmobile/magtape:v2.1.4
image: tmobile/magtape:v2.1.5
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 @@ -18,7 +18,7 @@ spec:
serviceAccountName: magtape-sa
initContainers:
- name: magtape-init
image: tmobile/magtape-init:v2.1.4
image: tmobile/magtape-init:v2.1.5
command: [/app/magtape-init.py]
imagePullPolicy: Always
env:
Expand All @@ -40,7 +40,7 @@ spec:
mountPath: /vwc
containers:
- name: magtape
image: tmobile/magtape:v2.1.4
image: tmobile/magtape:v2.1.5
ports:
- containerPort: 5000
command: ["gunicorn", "magtape:app", "--config=config.py"]
Expand Down

0 comments on commit d2d0fc2

Please sign in to comment.