Skip to content

Commit

Permalink
Merge pull request #412 from weaveworks/prep-release-0.22.0
Browse files Browse the repository at this point in the history
Release v0.22.0
  • Loading branch information
stefanprodan authored Jan 16, 2020
2 parents 3083519 + 3d7091a commit 2be6f3d
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- attach_workspace:
at: /tmp/bin
- run: test/container-build.sh
- run: test/e2e-kind.sh
- run: test/e2e-kind.sh v1.17.0
- run: test/e2e-kubernetes.sh
- run: test/e2e-kubernetes-tests.sh

Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project are documented in this file.

## 0.22.0 (2020-01-16)

Adds event dispatching through webhooks

#### Features

- Implement event dispatching webhook [#409](https://github.com/weaveworks/flagger/pull/409)
- Add general purpose event webhook [#401](https://github.com/weaveworks/flagger/pull/401)

#### Improvements

- Update Contour to v1.1 and add Linkerd header [#411](https://github.com/weaveworks/flagger/pull/411)
- Update Istio e2e to v1.4.3 [#407](https://github.com/weaveworks/flagger/pull/407)
- Update Kubernetes packages to 1.17 [#406](https://github.com/weaveworks/flagger/pull/406)

## 0.21.0 (2020-01-06)

Adds support for Contour ingress controller
Expand Down
2 changes: 1 addition & 1 deletion artifacts/flagger/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
serviceAccountName: flagger
containers:
- name: flagger
image: weaveworks/flagger:0.21.0
image: weaveworks/flagger:0.22.0
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down
4 changes: 2 additions & 2 deletions charts/flagger/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: flagger
version: 0.21.0
appVersion: 0.21.0
version: 0.22.0
appVersion: 0.22.0
kubeVersion: ">=1.11.0-0"
engine: gotpl
description: Flagger is a progressive delivery operator for Kubernetes
Expand Down
2 changes: 1 addition & 1 deletion charts/flagger/templates/prometheus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ spec:
serviceAccountName: {{ template "flagger.serviceAccountName" . }}-prometheus
containers:
- name: prometheus
image: "docker.io/prom/prometheus:v2.12.0"
image: "docker.io/prom/prometheus:v2.15.2"
imagePullPolicy: IfNotPresent
args:
- '--storage.tsdb.retention=2h'
Expand Down
2 changes: 1 addition & 1 deletion charts/flagger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

image:
repository: weaveworks/flagger
tag: 0.21.0
tag: 0.22.0
pullPolicy: IfNotPresent
pullSecret:

Expand Down
6 changes: 4 additions & 2 deletions docs/gitbook/how-it-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,10 @@ spec:
app: podinfo
```

Besides `app` Flagger supports `name` and `app.kubernetes.io/name` selectors. If you use a different
convention you can specify your label with the `-selector-labels` flag.
Besides `app` Flagger supports `name` and `app.kubernetes.io/name` selectors.
If you use a different convention you can specify your label with
the `-selector-labels=my-app-label` command flag in the Flagger deployment manifest under containers args
or by setting `--set selectorLabels=my-app-label` when installing Flagger with Helm.

The target deployment should expose a TCP port that will be used by Flagger to create the ClusterIP Services.
The container port from the target deployment should match the `service.port` or `service.targetPort`.
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/flagger/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ resources:
- deployment.yaml
images:
- name: weaveworks/flagger
newTag: 0.21.0
newTag: 0.22.0
2 changes: 1 addition & 1 deletion kustomize/base/prometheus/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
serviceAccountName: flagger-prometheus
containers:
- name: prometheus
image: prom/prometheus:v2.12.0
image: prom/prometheus:v2.15.2
imagePullPolicy: IfNotPresent
args:
- '--storage.tsdb.retention=2h'
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/prometheus/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ configMapGenerator:
- prometheus.yml
images:
- name: prom/prometheus
newTag: v2.10.0
newTag: v2.15.2
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

var VERSION = "0.21.0"
var VERSION = "0.22.0"
var REVISION = "unknown"
2 changes: 1 addition & 1 deletion test/e2e-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ KIND_VERSION=v0.7.0
KUBE_VERSION=v1.14.10

if [[ "$1" ]]; then
KIND_VERSION=$1
KUBE_VERSION=$1
fi

echo ">>> Installing kubectl"
Expand Down

0 comments on commit 2be6f3d

Please sign in to comment.