Skip to content

Commit

Permalink
release: Prepare v0.11.0 (#661)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Pacak <pacak.daniel@gmail.com>
  • Loading branch information
danielpacak authored Aug 3, 2021
1 parent 8fa3421 commit 2ea7474
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 16 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
name: Release unversioned snapshot
needs:
- unit-tests
- verify-code
runs-on: ubuntu-18.04
steps:
- name: Setup Go
Expand All @@ -65,6 +66,7 @@ jobs:
name: Run integration tests / Starboard CLI
needs:
- unit-tests
- verify-code
runs-on: ubuntu-18.04
steps:
- name: Setup Go
Expand Down Expand Up @@ -96,6 +98,7 @@ jobs:
name: Run integration tests / Starboard Operator
needs:
- unit-tests
- verify-code
runs-on: ubuntu-18.04
steps:
- name: Setup Go
Expand Down Expand Up @@ -136,6 +139,7 @@ jobs:
name: Integration / Operator / Conftest
needs:
- unit-tests
- verify-code
runs-on: ubuntu-18.04
steps:
- name: Setup Go
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
run: make unit-tests
itest-starboard:
name: Run integration tests / Starboard CLI
needs:
- unit-tests
runs-on: ubuntu-18.04
steps:
- name: Setup Go
Expand All @@ -49,6 +51,8 @@ jobs:
STARBOARD_CLI_LOG_LEVEL: "0"
itest-starboard-operator:
name: Run integration tests / Starboard Operator
needs:
- unit-tests
runs-on: ubuntu-18.04
steps:
- name: Setup Go
Expand Down Expand Up @@ -83,6 +87,8 @@ jobs:
OPERATOR_TARGET_NAMESPACES: default
integration-operator-conftest:
name: Integration / Operator / Conftest
needs:
- unit-tests
runs-on: ubuntu-18.04
steps:
- name: Setup Go
Expand Down Expand Up @@ -114,7 +120,6 @@ jobs:
release:
name: Release
needs:
- unit-tests
- itest-starboard
- itest-starboard-operator
- integration-operator-conftest
Expand Down
2 changes: 1 addition & 1 deletion build/scanner-aqua/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.12
FROM alpine:3.14

RUN echo "@edge http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories

Expand Down
2 changes: 1 addition & 1 deletion build/starboard-operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.12
FROM alpine:3.14

RUN adduser -u 10000 -D -g '' starboard starboard

Expand Down
2 changes: 1 addition & 1 deletion build/starboard/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.12
FROM alpine:3.14

RUN adduser -u 10000 -D -g '' starboard starboard

Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.5.3
version: 0.6.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.10.3
appVersion: 0.11.0

# kubeVersion: A SemVer range of compatible Kubernetes versions (optional)

Expand Down
2 changes: 1 addition & 1 deletion deploy/static/06-starboard-operator.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
securityContext: {}
containers:
- name: operator
image: docker.io/aquasec/starboard-operator:0.11.0-rc1
image: docker.io/aquasec/starboard-operator:0.11.0
imagePullPolicy: IfNotPresent
securityContext:
privileged: false
Expand Down
18 changes: 9 additions & 9 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ nav:
- Octant Plugin: integrations/octant.md
- Lens Extension: integrations/lens.md
- Custom Resource Definitions:
- Overview: crds/index.md
- VulnerabilityReport: crds/vulnerability-report.md
- ConfigAuditReport: crds/configaudit-report.md
- ClusterConfigAuditReport: crds/clusterconfigaudit-report.md
- CISKubeBenchReport: crds/ciskubebench-report.md
- KubeHunterReport: crds/kubehunter-report.md
- Overview: crds/index.md
- VulnerabilityReport: crds/vulnerability-report.md
- ConfigAuditReport: crds/configaudit-report.md
- ClusterConfigAuditReport: crds/clusterconfigaudit-report.md
- CISKubeBenchReport: crds/ciskubebench-report.md
- KubeHunterReport: crds/kubehunter-report.md
- Frequently Asked Questions: faq.md
- Further Reading: further-reading.md

Expand Down Expand Up @@ -81,14 +81,14 @@ extra:
version:
provider: mike
var:
tag: "v0.11.0-rc1"
tag: "v0.11.0"
tag_prev: "v0.10.3"
build:
version: "0.11.0-rc1"
version: "0.11.0"
commit: "5bd33431a239b98be4a3287563b8664a9b3d5707"
date: "2021-05-14T12:20:34Z"
chart:
version: 0.5.3
version: 0.6.0

# Requires pip install mkdocs-macros-plugin
plugins:
Expand Down

0 comments on commit 2ea7474

Please sign in to comment.