diff --git a/artifacts/flagger/deployment.yaml b/artifacts/flagger/deployment.yaml index 214eeaf9..f9779dc0 100644 --- a/artifacts/flagger/deployment.yaml +++ b/artifacts/flagger/deployment.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: flagger containers: - name: flagger - image: quay.io/stefanprodan/flagger:0.3.0-beta.1 + image: quay.io/stefanprodan/flagger:0.3.0 imagePullPolicy: Always ports: - name: http diff --git a/charts/flagger/Chart.yaml b/charts/flagger/Chart.yaml index 6b04d9ee..30e671ff 100644 --- a/charts/flagger/Chart.yaml +++ b/charts/flagger/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: flagger -version: 0.2.0 -appVersion: 0.3.0-beta.1 +version: 0.3.0 +appVersion: 0.3.0 kubeVersion: ">=1.9.0-0" engine: gotpl description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis. diff --git a/charts/flagger/values.yaml b/charts/flagger/values.yaml index 1ac62213..3ea3990e 100644 --- a/charts/flagger/values.yaml +++ b/charts/flagger/values.yaml @@ -2,7 +2,7 @@ image: repository: quay.io/stefanprodan/flagger - tag: 0.3.0-beta.1 + tag: 0.3.0 pullPolicy: IfNotPresent metricsServer: "http://prometheus.istio-system.svc.cluster.local:9090" diff --git a/docs/flagger-0.3.0.tgz b/docs/flagger-0.3.0.tgz new file mode 100644 index 00000000..543c682a Binary files /dev/null and b/docs/flagger-0.3.0.tgz differ diff --git a/docs/grafana-0.1.0.tgz b/docs/grafana-0.1.0.tgz index 33fe2d1d..7efa0e35 100644 Binary files a/docs/grafana-0.1.0.tgz and b/docs/grafana-0.1.0.tgz differ diff --git a/docs/index.yaml b/docs/index.yaml index 176fb860..974e1bc5 100755 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -1,9 +1,34 @@ apiVersion: v1 entries: flagger: + - apiVersion: v1 + appVersion: 0.3.0 + created: 2019-01-11T20:08:47.476526+02:00 + description: Flagger is a Kubernetes operator that automates the promotion of + canary deployments using Istio routing for traffic shifting and Prometheus metrics + for canary analysis. + digest: 8baa478cc802f4e6b7593934483359b8f70ec34413ca3b8de3a692e347a9bda4 + engine: gotpl + home: https://docs.flagger.app + icon: https://raw.githubusercontent.com/stefanprodan/flagger/master/docs/logo/flagger-icon.png + keywords: + - canary + - istio + - gitops + kubeVersion: '>=1.9.0-0' + maintainers: + - email: stefanprodan@users.noreply.github.com + name: stefanprodan + url: https://github.com/stefanprodan + name: flagger + sources: + - https://github.com/stefanprodan/flagger + urls: + - https://stefanprodan.github.io/flagger/flagger-0.3.0.tgz + version: 0.3.0 - apiVersion: v1 appVersion: 0.2.0 - created: 2019-01-04T13:38:42.239798+02:00 + created: 2019-01-11T20:08:47.476127+02:00 description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis. @@ -28,7 +53,7 @@ entries: version: 0.2.0 - apiVersion: v1 appVersion: 0.1.2 - created: 2019-01-04T13:38:42.239389+02:00 + created: 2019-01-11T20:08:47.475257+02:00 description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis. @@ -53,7 +78,7 @@ entries: version: 0.1.2 - apiVersion: v1 appVersion: 0.1.1 - created: 2019-01-04T13:38:42.238504+02:00 + created: 2019-01-11T20:08:47.474547+02:00 description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis. @@ -65,7 +90,7 @@ entries: version: 0.1.1 - apiVersion: v1 appVersion: 0.1.0 - created: 2019-01-04T13:38:42.237702+02:00 + created: 2019-01-11T20:08:47.473757+02:00 description: Flagger is a Kubernetes operator that automates the promotion of canary deployments using Istio routing for traffic shifting and Prometheus metrics for canary analysis. @@ -78,9 +103,9 @@ entries: grafana: - apiVersion: v1 appVersion: 5.4.2 - created: 2019-01-04T13:38:42.24034+02:00 + created: 2019-01-11T20:08:47.477041+02:00 description: Grafana dashboards for monitoring Flagger canary deployments - digest: f94c0c2eaf7a7db7ef070575d280c37f93922c0e11ebdf203482c9f43603a1c9 + digest: 1c929348357ea747405308125d9c7969cf743de5ab9e8adff6fa83943593b2f0 home: https://flagger.app icon: https://raw.githubusercontent.com/stefanprodan/flagger/master/docs/logo/flagger-icon.png maintainers: @@ -93,4 +118,4 @@ entries: urls: - https://stefanprodan.github.io/flagger/grafana-0.1.0.tgz version: 0.1.0 -generated: 2019-01-04T13:38:42.236727+02:00 +generated: 2019-01-11T20:08:47.472865+02:00 diff --git a/pkg/version/version.go b/pkg/version/version.go index 88831ffc..551729f6 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,4 +1,4 @@ package version -var VERSION = "0.3.0-beta.1" +var VERSION = "0.3.0" var REVISION = "unknown"