From aeb4f42e5d6dd2805342a692f620f7f2b739c8fc Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Wed, 30 Mar 2022 09:41:07 -0400 Subject: [PATCH 1/5] Release chart 1.12.0 Signed-off-by: Kingdon Barrett --- chart/flux/CHANGELOG.md | 7 +++++++ chart/flux/Chart.yaml | 4 ++-- chart/flux/values.yaml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/chart/flux/CHANGELOG.md b/chart/flux/CHANGELOG.md index f2302df7c..05b469de5 100644 --- a/chart/flux/CHANGELOG.md +++ b/chart/flux/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.12.0 (2021-12-08) + +### Improvements + + - Updated Flux to `1.25.0` + [fluxcd/flux#3598](https://github.com/fluxcd/flux/pull/3598) + ## 1.11.4 (2021-12-08) ### Improvements diff --git a/chart/flux/Chart.yaml b/chart/flux/Chart.yaml index 13a08d700..8ed5fa86e 100644 --- a/chart/flux/Chart.yaml +++ b/chart/flux/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 -appVersion: "1.24.3" -version: 1.11.4 +appVersion: "1.25.0" +version: 1.12.0 kubeVersion: ">=1.16.0-0" name: flux description: Flux is a tool that automatically ensures that the state of a cluster matches what is specified in version control diff --git a/chart/flux/values.yaml b/chart/flux/values.yaml index e8c249fa1..ecc4ad9b3 100644 --- a/chart/flux/values.yaml +++ b/chart/flux/values.yaml @@ -9,7 +9,7 @@ logFormat: fmt image: repository: docker.io/fluxcd/flux - tag: 1.24.3 + tag: 1.25.0 pullPolicy: IfNotPresent pullSecret: From 5e1c9daf6b46181726cba30d25b83928009f20cb Mon Sep 17 00:00:00 2001 From: Paulo Gomes Date: Tue, 3 May 2022 16:01:49 +0100 Subject: [PATCH 2/5] Update kubectl to v1.21.11 Signed-off-by: Paulo Gomes --- docker/kubectl.version | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/kubectl.version b/docker/kubectl.version index 180b35c31..07d40555c 100644 --- a/docker/kubectl.version +++ b/docker/kubectl.version @@ -1,4 +1,4 @@ -KUBECTL_VERSION=v1.21.3 -KUBECTL_CHECKSUM_amd64=a2ccab98460d80c9dcbc4c776e373c88e0921883da05610e17acf51e6f1c50a46891482cc62720647c1488e9e79986f61c90574a095a98a4e90806065089d5ef -KUBECTL_CHECKSUM_arm=c299c36ca76216b0025690f005e72ba93693a56901a38c2e176d09fd696a8b26cc1d30b9be68976adf4fe79a5a8a24efa4aa5036c76c2a7b913c64bebef48cc9 -KUBECTL_CHECKSUM_arm64=d7f27dd115bca27d85ea83925a1b46fe6211ab503bc05a0c3a9558027fcaa11bddc7fef3dd1183c760fa4426a3bffeedd2527dec69473174f252168fe179f452 +KUBECTL_VERSION=v1.21.11 +KUBECTL_CHECKSUM_amd64=84d128d1021167d3c58cc142115b0a6b31a50e3e78eb234648cdb6e26f42ab76143c0b5fd34f5476d963f2d09d8907031425eb0ceec529db6eab44a404b55530 +KUBECTL_CHECKSUM_arm=4cd3ef06b8eb806f17eab383c8b97b943c8864e8103e9330732dfcc849cc76baaf0d5bd000be11551485010fd51fb428e8cc243a30bf5bdaf1ab5df1903027be +KUBECTL_CHECKSUM_arm64=62601d78baf10115246de1956bd0f24c30d412e910c942ebbda87157fd9eb3845c213b47075cb94c08dc301b493f5d25c3d39d0229d02a365bfa37bd0f0ee0f4 From 0a4ddaadf14227f89444035016b31d87f963d6c8 Mon Sep 17 00:00:00 2001 From: Paulo Gomes Date: Tue, 3 May 2022 16:36:22 +0100 Subject: [PATCH 3/5] Update dependencies - Replace github.com/dgrijalva/jwt-go@v3.2.0+incompatible with github.com/golang-jwt/jwt@3.2.2 (fixes CVE-2020-26160). - Update golang.org/x/crypto to v0.0.0-20220427172511-eb4f295cb31f (fixes CVE-2022-27191). Signed-off-by: Paulo Gomes Signed-off-by: Kingdon Barrett --- go.mod | 4 ++++ go.sum | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index e2b1205b7..3e80a0bd8 100644 --- a/go.mod +++ b/go.mod @@ -17,6 +17,9 @@ replace ( github.com/fluxcd/helm-operator/pkg/install => github.com/fluxcd/helm-operator/pkg/install v0.0.0-20200213151218-f7e487142b46 ) +// dgrijalva/jwt-go is no longer maintained, replacing with a fork which is community maintained. +replace github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt v3.2.2+incompatible + // Pin kubernetes dependencies to 1.21.3 replace ( k8s.io/api => k8s.io/api v0.21.3 @@ -63,6 +66,7 @@ require ( github.com/whilp/git-urls v1.0.0 github.com/xeipuuv/gojsonschema v1.2.0 go.mozilla.org/sops/v3 v3.7.2 + golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f // indirect golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886 golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 diff --git a/go.sum b/go.sum index 5b531e124..37df1dbff 100644 --- a/go.sum +++ b/go.sum @@ -368,7 +368,6 @@ github.com/daviddengcn/go-colortext v0.0.0-20160507010035-511bcaf42ccd/go.mod h1 github.com/deislabs/oras v0.8.1/go.mod h1:Mx0rMSbBNaNfY9hjpccEnxkOqJL6KGjtxNHPLC4G4As= github.com/deislabs/oras v0.10.0/go.mod h1:N1UzE7rBa9qLyN4l8IlBTxc2PkrRcKgWQ3HTJvRnJRE= github.com/denisenkom/go-mssqldb v0.0.0-20191001013358-cfbb681360f0/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= -github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dimchansky/utfbom v1.1.0 h1:FcM3g+nofKgUteL8dm/UpdRXNC9KmADgTpLKsu0TRo4= github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8= @@ -522,6 +521,7 @@ github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/gogo/status v1.1.0 h1:+eIkrewn5q6b30y+g/BJINVVdi2xH7je5MPJ3ZPK3JA= github.com/gogo/status v1.1.0/go.mod h1:BFv9nrluPLmrS0EmGVvLaPNmRosr9KapBYd5/hpY1WM= +github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= @@ -1304,8 +1304,9 @@ golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210915214749-c084706c2272/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220214200702-86341886e292 h1:f+lwQ+GtmgoY+A2YaQxlSOnDjXcQ7ZRLWOHbC6HtRqE= golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f h1:OeJjE6G4dgCY4PIXvIRQbE8+RX+uXZyGhUy/ksMGJoc= +golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= From d09147f7ccacec8c4f3ef7d249b234a0d010840d Mon Sep 17 00:00:00 2001 From: Paulo Gomes Date: Tue, 3 May 2022 18:49:04 +0100 Subject: [PATCH 4/5] Add changelog entry for v1.25.1 Signed-off-by: Paulo Gomes --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48fdf09c6..42134fa9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,23 @@ > requests](https://github.com/fluxcd/toolkit/discussions) for Flux v2 > and Toolkit components. +## 1.25.1 (2022-05-03) + +This release includes a base image upgrade to the Alpine 3.15.4 upstream +that mitigates a number of CVE issues detected from the base image. + +Go dependencies have been upgraded as well. This release has no code changes. + +### Maintenance and documentation + +- Update dependencies [fluxcd/flux#3605][] + +### Thanks + +Thanks to @pjbgf for their contributions to this release. + +[fluxcd/flux#3605]: https://github.com/fluxcd/flux/pull/3605 + ## 1.25.0 (2022-03-30) This release includes a base image upgrade to the Alpine 3.15.3 upstream From 1c9306d689f2652bf4e381664767ce68a75e0522 Mon Sep 17 00:00:00 2001 From: Paulo Gomes Date: Tue, 3 May 2022 18:51:08 +0100 Subject: [PATCH 5/5] Update pkg/install/template for 1.25.1 Signed-off-by: Paulo Gomes --- deploy/flux-deployment.yaml | 2 +- pkg/install/generated_templates.gogen.go | 2 +- pkg/install/templates/flux-deployment.yaml.tmpl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/flux-deployment.yaml b/deploy/flux-deployment.yaml index 61152b9b6..45c8a7d6d 100644 --- a/deploy/flux-deployment.yaml +++ b/deploy/flux-deployment.yaml @@ -66,7 +66,7 @@ spec: # There are no ":latest" images for flux. Find the most recent # release or image version at https://hub.docker.com/r/fluxcd/flux/tags # and replace the tag here. - image: docker.io/fluxcd/flux:1.25.0 + image: docker.io/fluxcd/flux:1.25.1 imagePullPolicy: IfNotPresent resources: requests: diff --git a/pkg/install/generated_templates.gogen.go b/pkg/install/generated_templates.gogen.go index dc73d4805..cb10d6c78 100644 --- a/pkg/install/generated_templates.gogen.go +++ b/pkg/install/generated_templates.gogen.go @@ -33,7 +33,7 @@ var templates = func() http.FileSystem { modTime: time.Date(1970, 1, 1, 0, 0, 0, 0, time.UTC), uncompressedSize: 7263, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xd4\x59\xdd\x6f\x1b\x37\x12\x7f\xf7\x5f\x31\x50\x0e\x48\x0c\x48\x2b\xbb\x6e\x8b\xc3\xf6\x5c\x5c\x9a\x0f\x37\x97\x26\x35\xec\xe4\x0e\x7d\xaa\x29\xee\x48\x4b\x88\x4b\xee\x71\xb8\x52\x17\x46\xff\xf7\xc3\x90\xfb\xc1\x95\x65\xa7\xc8\xdb\xf9\x21\xb1\xc9\xe1\x70\xe6\x37\xdf\xdc\xc5\x62\x71\x22\x6a\xf5\x6f\x74\xa4\xac\xc9\x41\xd4\x35\x2d\x77\xe7\x27\x5b\x65\x8a\x1c\x5e\x63\xad\x6d\x5b\xa1\xf1\x27\x15\x7a\x51\x08\x2f\xf2\x13\x00\x23\x2a\xcc\x61\xad\x9b\x3f\xee\xef\x41\xad\x21\xfb\x28\x2a\xa4\x5a\x48\x84\x3f\xff\xec\xf6\xc3\x9f\x39\xdc\xdf\x4f\x77\xef\xef\x01\x4d\xc1\x64\x54\xa3\x64\x66\x0e\x6b\xad\xa4\xa0\x1c\xce\x4f\x00\x08\x35\x4a\x6f\x1d\xef\x00\x54\xc2\xcb\xf2\x17\xb1\x42\x4d\x71\x21\xbd\x9b\xa9\xbd\x13\x1e\x37\x6d\xdc\xf4\x6d\x8d\x39\xdc\xa0\x74\x28\x3c\x9e\x00\x78\xac\x6a\x2d\x3c\x76\xcc\x12\x0d\xf8\x47\x18\x63\xbd\xf0\xca\x9a\x81\x39\x40\xed\x6c\x85\xbe\xc4\x86\x32\x65\x97\xb5\x75\x3e\x87\xd9\xc5\xd9\xc5\xf9\x0c\x9e\x81\x47\xad\x13\x0a\xf0\x16\x48\x3a\x51\x23\x2c\x2b\xf4\x4e\x49\x62\xe5\x6a\xab\x8c\x7f\x4e\xc0\x87\xb3\x8e\xb1\x9e\xe8\x70\xa0\x05\x40\x8f\x45\xd8\xb2\x05\xde\x4e\x50\xe0\x9f\x15\x7a\x91\x6d\x9b\x15\x3a\x83\x1e\x83\x70\x96\x72\xd0\xca\x74\x2c\x18\x3a\xb7\x53\x12\x5f\x4a\x69\x1b\xe3\x3f\x4e\x6f\x00\xd8\x59\xdd\x54\x38\xc8\xb0\xe8\x64\xd8\x28\xbf\xd8\x62\x3b\x5c\x44\x0c\x9f\x1f\x2f\xee\x57\x46\x7e\x0b\x3e\x52\x04\xcf\x48\xa8\x0a\x5c\x8b\x46\xfb\x0f\xb6\xc0\x1c\xce\xbe\x3d\x3b\x83\x67\xb0\x2f\xd1\x40\xc5\xd2\x60\x01\x0e\x45\xb1\xb0\x46\xb7\x73\xd8\x23\xec\xad\x79\xee\x61\x85\x20\x56\x1a\x19\x48\x59\x56\xb6\x38\xe9\x18\x3e\x83\x4f\xa5\x22\x50\x04\x02\x7c\x55\xaf\x09\x1a\xc2\x02\xd6\xd6\xc1\x06\x0d\x3a\xe1\x95\xd9\xc0\xed\xed\xcf\xb0\xc5\x96\x32\x78\x67\xe0\xfd\xdf\x09\x7e\xbc\x84\xf3\xec\xfc\x6c\x3e\x70\xe9\xef\x8e\x2a\x10\x08\x87\xa9\x1c\x64\x59\x14\x83\x58\x80\x00\xc2\x5a\xb0\x37\x75\x40\xc1\x1e\x07\x36\x52\x18\xd8\x3b\xe5\x59\xd0\xec\x38\x7e\x1b\x34\x03\x18\x58\xd5\xbe\x7d\xad\x5c\x0a\x62\x85\x85\x6a\xaa\x1c\x3e\x60\x65\x5d\x9b\xea\x89\xb0\xb6\x5a\xdb\x3d\x6b\xd4\x5d\xad\x28\xa8\xda\x10\xaf\x09\x90\x0d\x79\x5b\x29\x46\x60\x6b\xec\xde\xfc\x5e\x5a\xf2\x34\xb0\x58\x2b\x8d\x73\xd8\x97\x4a\x96\xd0\xda\x06\xf6\x4a\xeb\xa8\x94\xb7\x50\x58\x0e\x50\x5e\xe6\x43\xfc\x8b\x03\xbb\x37\x2c\xf6\xc0\xc0\x61\x6d\xc1\x09\x5f\xa2\x03\x5f\x0a\xd3\x5d\xbc\x51\xbe\x6c\x56\x60\x79\x11\x41\xab\x2d\x66\xf0\x9b\x6d\x9e\x6b\x0d\x42\x93\xed\xaf\x98\x82\x0d\xca\x83\x32\xde\x86\x33\xd2\x1a\x2f\x94\x41\x37\x87\x15\x6a\xbb\xcf\xe0\x16\x47\x54\x4b\xef\x6b\xca\x97\x4b\xf6\x29\x59\xb0\x47\x6b\xdc\x08\xd9\x86\x85\xe5\xa6\x51\x05\xd2\xb2\x21\x5c\xd4\x4e\xed\x84\xc7\xe0\x77\xac\xc5\x72\x60\xd1\x1b\x81\xa8\x5c\x48\x6b\xd6\x6a\x33\x6c\x01\xc4\x85\x0f\xa2\xce\x93\xc5\x34\xf4\x16\xc9\xb1\xaf\x35\x48\x88\xc9\x65\x64\x32\xfa\xdd\x17\x8d\xb1\x57\x54\xf2\x4a\x29\x76\x08\x02\x0a\xb5\x5e\xa3\xe3\x34\xdb\x73\xe8\xc2\x69\x4c\xa5\x01\xfb\xc8\x2e\x45\x9f\xd3\xd1\x4e\x15\xd8\xe3\xbd\x56\x9b\x4a\xd4\xa3\x20\xca\x97\x20\x0c\xa0\xf1\xae\x0d\x3a\xdc\x45\xa2\xbb\x39\x08\x53\x40\x63\xa4\xad\x38\xbf\x87\xf3\x51\xdb\x0f\xc1\x8e\xc2\x14\x03\x17\x34\xbb\xc0\x41\x21\x75\x86\x7c\x60\x01\x86\xe1\x2b\x2c\x90\x1c\xfb\xa2\x05\x42\x0a\xf0\x16\x54\xc5\x99\x15\xae\xae\xaf\x42\xf4\xc3\x0b\x56\x8b\xd4\xc6\x28\x33\x5e\xce\xca\xed\xd0\xa9\xb5\x92\x21\xc5\x43\xdd\xb8\xda\x12\xd2\xe9\x5f\x00\x72\xe0\x12\xf3\x46\x44\x91\x01\xe2\xfb\xfe\x02\x70\x20\xdc\x66\x8c\xcf\x47\x10\xdb\xd4\x1b\x4e\x1c\x94\x40\x33\xcd\xbd\xcf\x1e\xc9\xbe\x0f\xcf\x1d\xc9\xbe\x3d\x9c\x43\x08\x3e\x48\xfc\x49\x69\xe8\x50\x77\x18\x12\xa4\xb1\x30\xcb\xb9\x6c\x92\x9f\x81\xaa\xc4\x06\xa3\xf7\xf3\x81\x0c\xde\x2a\x53\x04\x9d\x2b\xce\x27\x0e\xe5\xe8\xb5\x31\x97\x68\x14\x84\x9c\x35\xc2\x51\x36\x02\x77\x16\x20\xfc\x10\xf0\x65\xb3\xca\x0a\x2b\xb7\xe8\x32\x69\xab\xa5\xeb\x32\x40\x8c\x7b\x2f\x06\xe8\x7a\x3b\x72\x87\xc0\xdd\x03\xdf\xea\xc5\x06\x58\xd2\x6c\xa0\x09\xd7\xe4\xd0\x31\x54\x36\xe5\x96\x9f\x67\xdf\x7c\x97\x9d\x4d\x69\xaf\x1b\xad\xaf\xad\x56\xb2\xcd\xe1\xdd\xfa\xa3\xf5\xd7\x0e\x29\xd5\xc2\x21\xd9\xc6\x49\xa4\x34\x81\x3b\xfc\x6f\x83\xe4\x27\x6b\x00\xb2\x6e\x72\xf8\xee\xac\x9a\x2c\x56\x21\xc7\xe7\xf0\xfd\xb7\x1f\xd4\xd8\x58\x58\x97\x1e\x5e\x8c\x96\xb9\x0e\x4d\xc6\xc5\xd9\x05\x97\x4c\x65\xd6\xd6\x55\xc1\x65\x85\x1e\xa8\xb5\xda\xa1\x41\xa2\x6b\x67\x57\x98\x4a\xc0\x90\x5e\x4d\xcb\x75\xbc\x2a\x32\x9c\x2e\x0b\x5f\xe6\xb0\x14\xb5\x8a\x48\xef\xbe\x5f\xaa\x02\x8d\x57\xbe\xcd\xea\x66\x95\xd0\x2a\xa3\xbc\x12\xfa\x35\x6a\xd1\xde\x72\x7c\x16\x94\xc3\x77\x09\x81\x57\x15\xda\xc6\x1f\xd9\xe3\xea\xaa\xfe\x3f\x44\x4d\x82\x76\x62\x98\xe3\x7d\x11\xc4\xfa\x76\x1d\x25\x43\x2f\x83\x64\xc5\x92\xa8\xe4\xce\xd0\xc6\x5e\x15\xb4\xed\xf2\xcd\x86\x4d\x06\xca\x44\x9f\x7b\x4e\xf1\x0c\x51\xb9\x9c\xa4\xc9\x1e\xb3\x5f\x8d\x6e\x73\xf0\xae\x41\xe6\xc6\xcd\x4f\xc8\x50\xab\x2e\xb1\x73\x48\xd5\xe8\xd6\xd6\x49\x64\xa6\xb1\xdb\xe1\x66\xe7\x31\xc1\xd3\x86\x64\x2a\xfb\x4e\xb8\x4e\xf6\x48\xf6\x75\xe2\x27\x31\xfa\xce\x48\xdd\x84\xcc\xc9\x3d\x5b\x2c\x70\x7d\x56\x8d\x4d\xc1\x17\x7a\x98\xbe\x8b\xf9\x81\x8f\x1e\xf4\x17\x43\x76\x85\x02\xa5\x16\x8e\x7b\xb5\x95\xdd\x25\x09\xe0\x89\x36\x20\xa6\xc7\x54\x79\x67\xad\x5f\x66\x44\xe5\xa3\x0a\x08\x33\xb9\x75\x36\x96\xa8\x59\xbc\x79\xde\x93\x24\x1c\xd0\xec\x94\xb3\x26\x14\x84\x58\x6b\x67\xef\x3f\xff\xf4\xe6\xd5\xaf\x1f\xdf\xbe\xbb\x9a\xc5\x12\x30\x67\x3c\xec\x0e\x9d\x9b\xd6\xeb\x84\x4d\x28\x71\xab\x36\x56\x53\xaf\x8f\xe9\xf8\xa0\xd0\x3e\xd4\x71\x74\x4e\x26\x7e\x54\x51\xae\x79\x3c\xaa\xf4\xb7\x71\x8a\x4e\x5a\x91\x4e\xba\x60\x93\x84\xc5\x61\x43\x93\x1a\x3d\x74\x33\x7d\xcf\x2d\x0c\x08\xed\xd1\x19\xee\xa9\x1f\x48\xbc\x76\xb6\x62\xb7\xe8\x3b\x96\x39\x08\x62\x77\xeb\xaa\x2a\xc3\xa0\xad\xdc\xd2\x43\x63\xa3\xd9\xe5\x47\x70\x19\xe1\x9e\xe0\xb2\x13\xba\xc1\x07\x98\x7c\xc9\x89\x0f\x7d\xa0\xaf\xb9\x4f\x78\x00\x97\xfc\x69\xa9\x7f\xa2\xd8\x3f\xe2\x97\x4c\x15\xbb\x9b\x09\xdd\x34\x3f\x7c\x29\xf2\xf6\x82\x9b\x12\x0b\xd4\xd4\xb5\x6e\xe1\xe7\x4f\x9f\xae\x61\x25\x48\x49\x10\x8d\x2f\x41\x3a\x0c\x99\x54\xe8\x58\xd5\xc7\x41\x80\x19\xee\x94\x08\x8a\xdf\x5d\xbd\xfb\xf4\xfb\xcb\xcf\x9f\x7e\xfe\x7c\xfb\xe6\xe6\x2e\xa8\x3b\x2c\xbd\x7f\xf3\xdb\xdd\xc4\xe1\x77\xc2\x29\x1e\xe3\xa8\x6f\x90\x13\x86\xb1\x7d\x39\xb0\xdf\x5b\x67\xab\xa9\x0d\x23\xd9\x0d\xae\xf3\x89\xe6\x93\x5e\x91\x13\x1b\xab\x30\x02\xc0\x98\xe7\x13\x3c\x22\x04\x71\x38\xc5\x82\x2b\xb1\x14\xb2\xc4\x82\x5d\x2b\xf5\xed\xa1\xad\x66\xa4\x98\xfb\x3c\xe1\x62\x5d\xd7\x37\x27\x07\xba\xe1\x3a\x1c\x9c\x87\x4b\x78\x28\xec\x30\xf6\x25\x52\xea\x0b\x63\xf7\xea\xf7\x96\xa5\x6c\x18\xa7\x10\x71\xe1\x09\x21\x38\x22\x94\x76\x1f\x06\x5f\x6b\x0c\xca\x60\x32\xe5\xa7\xbe\xb3\x58\x0c\x0a\x84\xc1\x87\x2f\xbf\x1c\x96\xb2\xae\xe9\xcb\x68\x27\x33\xa9\x1b\xf2\xe8\x32\x4e\xe0\x3a\x85\xe4\x33\xc5\x5c\x33\x42\xf1\x2a\x92\xbe\xbb\x9e\x28\xc5\x69\x87\xd0\x87\xc1\x7a\xea\xd9\xa3\x0c\x3d\x3d\x7b\x97\x77\x4c\x19\x46\xdd\xa4\x04\xa5\x12\x77\xd4\x97\x27\x93\x2e\x53\x11\x54\x0d\x85\xd1\x3f\xa0\xa7\xb0\x88\xe1\xb4\x0a\x85\x2d\xf4\x78\x61\xe2\x7f\xd1\x8f\xd1\xa7\xa9\x2c\x7d\x72\x89\x61\xc8\x0e\x9c\x0c\xfe\x13\x41\xb8\x18\xc4\x02\xb7\x28\x94\xbb\x7c\x50\xf6\x52\xb1\x6e\x92\x0e\x73\x34\xde\xe7\x9b\x5f\xe2\xcb\x84\x30\x9b\xb8\x77\xa5\x7c\x98\x96\x49\x79\xeb\xda\x21\x5d\xbf\xe5\xce\x38\x61\xf7\x54\xcc\xb1\xdb\x24\xba\x77\x21\x73\x34\x9c\xd2\x58\xe8\x7b\xe7\xbf\xbd\x48\x23\xf3\x34\x1f\xff\x7e\xff\xe6\xb7\xd3\x7f\xc6\x99\x3d\xb4\xd5\x0d\xa1\x5b\x8e\xc2\x66\x69\xa0\x33\x3e\x1c\x4e\x8d\xd3\x97\xf7\xf7\x90\x5d\x29\xcf\xca\x86\xc7\xbb\x29\xc5\xca\x09\x23\xcb\x9e\xe8\xa7\xf0\x57\x7c\xc6\x53\xeb\xb0\xc4\xf9\x8b\x8e\x9d\xe4\x1e\x8e\xcf\xdd\x06\x4f\xa1\x7f\x59\x65\x92\x03\xb3\xf9\xac\x7b\x0d\xd4\x84\xe9\xf1\xa7\x93\x9a\x43\x76\x3c\x19\xa7\xae\x4a\x18\xb5\xe6\x9e\x9c\x63\x88\x54\x81\x2e\x9a\xe3\x60\xb2\x09\x8f\x11\x96\x10\x1a\x53\xa0\x3b\xb0\xb1\x43\x2d\xbc\xda\x61\x68\x39\xa9\xf7\xc0\xcd\xc4\xce\x07\x31\x39\x28\x47\xcd\xaa\x50\xee\x7c\x1e\xff\xff\x66\x78\xda\x1c\xc1\x09\x4f\x97\xc7\xc0\x09\xef\x81\x3d\xaa\x3d\xd5\x11\x06\x9f\x09\xdd\xb1\xf3\x6c\xdc\xc1\x72\x4c\x03\xc7\xcf\xbf\xa9\x84\x3a\x2a\x00\xf2\x46\xcf\xa1\xa7\x1a\x1f\x67\x8f\x9a\x03\x39\x95\xec\x2d\x03\x8a\x26\xbc\xdb\x31\x4e\x5c\xb1\x95\x3f\x18\xc0\x53\xac\xba\xda\xd7\x55\xb6\xcb\x27\x4a\x5d\x7f\xa2\xe3\xc5\xa7\x2e\xff\xb1\xc5\x16\x54\xf1\xe3\x40\xf6\x44\x3b\x93\x48\xc5\x2c\x84\x6f\x1c\x4e\x5e\x01\x8e\xdc\x15\xb6\xdb\xc5\x40\x4f\x93\x74\xd5\x67\x6b\x50\x1e\x4a\x41\xa1\x14\x5b\xa3\x5b\x10\x52\x22\xc5\x8c\x5e\x62\x7c\x41\x7b\xd1\xbf\xd9\xdc\xad\x85\x26\xbc\x3b\x3d\xb9\xbf\x5f\xf4\x86\xb8\xe9\x6a\xf8\x31\x5b\xf4\x4c\x03\xfd\xc3\x78\x38\x4e\x76\xc4\x4e\xe4\x5d\x23\x7d\x94\x77\x1f\xc6\x79\x6e\xf1\x1a\x0f\xd4\x1a\x09\x2b\x6b\xb7\x5b\xc4\x9a\xbd\x7e\x10\x75\xb6\x51\x7e\x36\x87\x0a\x05\x03\xce\x09\x0d\x44\x98\xb1\xbb\x40\x68\x6a\xf2\x0e\x45\x35\x44\xc4\xe9\x81\x60\xcc\x7a\x41\x5e\x78\xbc\xe4\x04\xf3\xa8\xdf\x18\xfc\xc3\xf7\xce\x93\x54\x3c\x61\x60\xd6\xdf\x31\xeb\xeb\x51\xc2\xe4\x05\x66\x9b\x6c\x0e\xff\x41\xee\x2c\x5f\x69\xdb\x14\xa7\x59\x78\x20\xf2\x76\xcb\xf3\x09\x41\x2d\x9c\x57\xb2\xd1\xc2\xf5\xc6\xe8\xb8\x1c\x96\xd2\xee\xd6\xcb\x3d\x71\x1e\x95\xcc\x2b\xdb\x33\xdf\x6c\x6f\xdd\x96\x86\x61\xf3\xe0\x58\xb8\xe8\x52\xac\xe4\xf9\x37\x17\x0f\xff\x4d\x15\x7e\x13\xbd\xaf\xcf\x4a\xc3\x4b\xb5\x35\x4f\xb8\xc6\x87\x8e\xfa\x6a\x24\x3e\xf0\x90\x9e\xdf\x62\xe4\x77\x19\xfa\xc0\xc7\xbd\xe5\xd8\x91\x70\xf1\x23\xae\x73\x8b\x6e\x77\xe4\x1b\x06\x0f\x04\x63\x07\xc4\xb1\xfa\x43\x5a\x8a\xc5\x96\xcb\x58\xf4\x32\x42\x9f\x7c\x18\x79\x9e\x7c\x5b\x49\x3e\x92\xb0\x71\xc2\xd3\x5d\x68\xca\xb3\x89\x96\x5a\x91\x47\xb3\xe8\x44\xb8\xcc\x2f\xce\x2e\xce\x07\x90\x6e\x70\xa3\xc8\xbb\xf6\xb5\x22\x86\xf8\x56\x0a\x13\xdc\xf5\x00\x29\xd7\x91\x2d\x8a\x48\xb7\xa0\x8e\x30\x55\xbb\xcb\x8d\x2f\x8b\x42\xc5\x47\x16\x2e\xde\x2f\xb9\x79\x9f\xc0\x38\xee\x8f\xfd\xdb\xfd\x3d\xb8\xd0\x0a\x7c\xe1\xf4\x22\x7c\xf5\x9a\xe4\xd3\xf1\xb7\xfe\x82\x5f\xeb\x8e\xfd\xeb\x8f\xb7\x7d\xe3\x45\xf3\x6e\x20\x6a\x5c\xd7\x86\x81\x29\xac\x27\xb0\x81\x18\x2a\xd1\x86\xc7\x29\xbd\x1b\x9f\x28\x0d\x69\x6b\xb7\x4d\x0d\x8a\xa8\x41\x02\x6b\x80\x6c\x85\xf0\x7e\xf8\x56\xc4\xdc\x9b\x9a\xc6\x17\xc8\xc2\x50\xff\xfe\x35\xfb\x68\x0d\xce\xd2\x9d\x57\x41\x80\xf4\x0d\x32\x5e\x4e\xd3\x67\xc9\x7e\xb0\x09\xf2\x4d\x76\x86\x99\x6b\x76\x3e\x3b\xf9\x5f\x00\x00\x00\xff\xff\xf6\x06\x1e\x00\x5f\x1c\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xd4\x59\xdd\x6f\x1b\x37\x12\x7f\xf7\x5f\x31\x50\x0e\x48\x0c\x48\x2b\xbb\x6e\x8b\xc3\xf6\x5c\x5c\x9a\x0f\x37\x97\x26\x35\xec\xe4\x0e\x7d\xaa\x29\xee\x48\x4b\x88\x4b\xee\x71\xb8\x52\x17\x46\xff\xf7\xc3\x90\xfb\xc1\x95\x65\xa7\xc8\xdb\xf9\x21\xb1\xc9\xe1\x70\xe6\x37\xdf\xdc\xc5\x62\x71\x22\x6a\xf5\x6f\x74\xa4\xac\xc9\x41\xd4\x35\x2d\x77\xe7\x27\x5b\x65\x8a\x1c\x5e\x63\xad\x6d\x5b\xa1\xf1\x27\x15\x7a\x51\x08\x2f\xf2\x13\x00\x23\x2a\xcc\x61\xad\x9b\x3f\xee\xef\x41\xad\x21\xfb\x28\x2a\xa4\x5a\x48\x84\x3f\xff\xec\xf6\xc3\x9f\x39\xdc\xdf\x4f\x77\xef\xef\x01\x4d\xc1\x64\x54\xa3\x64\x66\x0e\x6b\xad\xa4\xa0\x1c\xce\x4f\x00\x08\x35\x4a\x6f\x1d\xef\x00\x54\xc2\xcb\xf2\x17\xb1\x42\x4d\x71\x21\xbd\x9b\xa9\xbd\x13\x1e\x37\x6d\xdc\xf4\x6d\x8d\x39\xdc\xa0\x74\x28\x3c\x9e\x00\x78\xac\x6a\x2d\x3c\x76\xcc\x12\x0d\xf8\x47\x18\x63\xbd\xf0\xca\x9a\x81\x39\x40\xed\x6c\x85\xbe\xc4\x86\x32\x65\x97\xb5\x75\x3e\x87\xd9\xc5\xd9\xc5\xf9\x0c\x9e\x81\x47\xad\x13\x0a\xf0\x16\x48\x3a\x51\x23\x2c\x2b\xf4\x4e\x49\x62\xe5\x6a\xab\x8c\x7f\x4e\xc0\x87\xb3\x8e\xb1\x9e\xe8\x70\xa0\x05\x40\x8f\x45\xd8\xb2\x05\xde\x4e\x50\xe0\x9f\x15\x7a\x91\x6d\x9b\x15\x3a\x83\x1e\x83\x70\x96\x72\xd0\xca\x74\x2c\x18\x3a\xb7\x53\x12\x5f\x4a\x69\x1b\xe3\x3f\x4e\x6f\x00\xd8\x59\xdd\x54\x38\xc8\xb0\xe8\x64\xd8\x28\xbf\xd8\x62\x3b\x5c\x44\x0c\x9f\x1f\x2f\xee\x57\x46\x7e\x0b\x3e\x52\x04\xcf\x48\xa8\x0a\x5c\x8b\x46\xfb\x0f\xb6\xc0\x1c\xce\xbe\x3d\x3b\x83\x67\xb0\x2f\xd1\x40\xc5\xd2\x60\x01\x0e\x45\xb1\xb0\x46\xb7\x73\xd8\x23\xec\xad\x79\xee\x61\x85\x20\x56\x1a\x19\x48\x59\x56\xb6\x38\xe9\x18\x3e\x83\x4f\xa5\x22\x50\x04\x02\x7c\x55\xaf\x09\x1a\xc2\x02\xd6\xd6\xc1\x06\x0d\x3a\xe1\x95\xd9\xc0\xed\xed\xcf\xb0\xc5\x96\x32\x78\x67\xe0\xfd\xdf\x09\x7e\xbc\x84\xf3\xec\xfc\x6c\x3e\x70\xe9\xef\x8e\x2a\x10\x08\x87\xa9\x1c\x64\x59\x14\x83\x58\x80\x00\xc2\x5a\xb0\x37\x75\x40\xc1\x1e\x07\x36\x52\x18\xd8\x3b\xe5\x59\xd0\xec\x38\x7e\x1b\x34\x03\x18\x58\xd5\xbe\x7d\xad\x5c\x0a\x62\x85\x85\x6a\xaa\x1c\x3e\x60\x65\x5d\x9b\xea\x89\xb0\xb6\x5a\xdb\x3d\x6b\xd4\x5d\xad\x28\xa8\xda\x10\xaf\x09\x90\x0d\x79\x5b\x29\x46\x60\x6b\xec\xde\xfc\x5e\x5a\xf2\x34\xb0\x58\x2b\x8d\x73\xd8\x97\x4a\x96\xd0\xda\x06\xf6\x4a\xeb\xa8\x94\xb7\x50\x58\x0e\x50\x5e\xe6\x43\xfc\x8b\x03\xbb\x37\x2c\xf6\xc0\xc0\x61\x6d\xc1\x09\x5f\xa2\x03\x5f\x0a\xd3\x5d\xbc\x51\xbe\x6c\x56\x60\x79\x11\x41\xab\x2d\x66\xf0\x9b\x6d\x9e\x6b\x0d\x42\x93\xed\xaf\x98\x82\x0d\xca\x83\x32\xde\x86\x33\xd2\x1a\x2f\x94\x41\x37\x87\x15\x6a\xbb\xcf\xe0\x16\x47\x54\x4b\xef\x6b\xca\x97\x4b\xf6\x29\x59\xb0\x47\x6b\xdc\x08\xd9\x86\x85\xe5\xa6\x51\x05\xd2\xb2\x21\x5c\xd4\x4e\xed\x84\xc7\xe0\x77\xac\xc5\x72\x60\xd1\x1b\x81\xa8\x5c\x48\x6b\xd6\x6a\x33\x6c\x01\xc4\x85\x0f\xa2\xce\x93\xc5\x34\xf4\x16\xc9\xb1\xaf\x35\x48\x88\xc9\x65\x64\x32\xfa\xdd\x17\x8d\xb1\x57\x54\xf2\x4a\x29\x76\x08\x02\x0a\xb5\x5e\xa3\xe3\x34\xdb\x73\xe8\xc2\x69\x4c\xa5\x01\xfb\xc8\x2e\x45\x9f\xd3\xd1\x4e\x15\xd8\xe3\xbd\x56\x9b\x4a\xd4\xa3\x20\xca\x97\x20\x0c\xa0\xf1\xae\x0d\x3a\xdc\x45\xa2\xbb\x39\x08\x53\x40\x63\xa4\xad\x38\xbf\x87\xf3\x51\xdb\x0f\xc1\x8e\xc2\x14\x03\x17\x34\xbb\xc0\x41\x21\x75\x86\x7c\x60\x01\x86\xe1\x2b\x2c\x90\x1c\xfb\xa2\x05\x42\x0a\xf0\x16\x54\xc5\x99\x15\xae\xae\xaf\x42\xf4\xc3\x0b\x56\x8b\xd4\xc6\x28\x33\x5e\xce\xca\xed\xd0\xa9\xb5\x92\x21\xc5\x43\xdd\xb8\xda\x12\xd2\xe9\x5f\x00\x72\xe0\x12\xf3\x46\x44\x91\x01\xe2\xfb\xfe\x02\x70\x20\xdc\x66\x8c\xcf\x47\x10\xdb\xd4\x1b\x4e\x1c\x94\x40\x33\xcd\xbd\xcf\x1e\xc9\xbe\x0f\xcf\x1d\xc9\xbe\x3d\x9c\x43\x08\x3e\x48\xfc\x49\x69\xe8\x50\x77\x18\x12\xa4\xb1\x30\xcb\xb9\x6c\x92\x9f\x81\xaa\xc4\x06\xa3\xf7\xf3\x81\x0c\xde\x2a\x53\x04\x9d\x2b\xce\x27\x0e\xe5\xe8\xb5\x31\x97\x68\x14\x84\x9c\x35\xc2\x51\x36\x02\x77\x16\x20\xfc\x10\xf0\x65\xb3\xca\x0a\x2b\xb7\xe8\x32\x69\xab\xa5\xeb\x32\x40\x8c\x7b\x2f\x06\xe8\x7a\x3b\x72\x87\xc0\xdd\x03\xdf\xea\xc5\x06\x58\xd2\x6c\xa0\x09\xd7\xe4\xd0\x31\x54\x36\xe5\x96\x9f\x67\xdf\x7c\x97\x9d\x4f\x69\xaf\x1b\xad\xaf\xad\x56\xb2\xcd\xe1\xdd\xfa\xa3\xf5\xd7\x0e\x29\xd5\xc2\x21\xd9\xc6\x49\xa4\x34\x81\x3b\xfc\x6f\x83\xe4\x27\x6b\x00\xb2\x6e\x72\xf8\xee\xac\x9a\x2c\x56\x21\xc7\xe7\xf0\xfd\xb7\x1f\xd4\xd8\x58\x58\x97\x1e\x5e\x8c\x96\xb9\x0e\x4d\xc6\xc5\xd9\x05\x97\x4c\x65\xd6\xd6\x55\xc1\x65\x85\x1e\xa8\xb5\xda\xa1\x41\xa2\x6b\x67\x57\x98\x4a\xc0\x90\x5e\x4d\xcb\x75\xbc\x2a\x32\x9c\x2e\x0b\x5f\xe6\xb0\x14\xb5\x8a\x48\xef\xbe\x5f\xaa\x02\x8d\x57\xbe\xcd\xea\x66\x95\xd0\x2a\xa3\xbc\x12\xfa\x35\x6a\xd1\xde\x72\x7c\x16\x94\xc3\x77\x09\x81\x57\x15\xda\xc6\x1f\xd9\xe3\xea\xaa\xfe\x3f\x44\x4d\x82\x76\x62\x98\xe3\x7d\x11\xc4\xfa\x76\x1d\x25\x43\x2f\x83\x64\xc5\x92\xa8\xe4\xce\xd0\xc6\x5e\x15\xb4\xed\xf2\xcd\x86\x4d\x06\xca\x44\x9f\x7b\x4e\xf1\x0c\x51\xb9\x9c\xa4\xc9\x1e\xb3\x5f\x8d\x6e\x73\xf0\xae\x41\xe6\xc6\xcd\x4f\xc8\x50\xab\x2e\xb1\x73\x48\xd5\xe8\xd6\xd6\x49\x64\xa6\xb1\xdb\xe1\x66\xe7\x31\xc1\xd3\x86\x64\x2a\xfb\x4e\xb8\x4e\xf6\x48\xf6\x75\xe2\x27\x31\xfa\xce\x48\xdd\x84\xcc\xc9\x3d\x5b\x2c\x70\x7d\x56\x8d\x4d\xc1\x17\x7a\x98\xbe\x8b\xf9\x81\x8f\x1e\xf4\x17\x43\x76\x85\x02\xa5\x16\x8e\x7b\xb5\x95\xdd\x25\x09\xe0\x89\x36\x20\xa6\xc7\x54\x79\x67\xad\x5f\x66\x44\xe5\xa3\x0a\x08\x33\xb9\x75\x36\x96\xa8\x59\xbc\x79\xde\x93\x24\x1c\xd0\xec\x94\xb3\x26\x14\x84\x58\x6b\x67\xef\x3f\xff\xf4\xe6\xd5\xaf\x1f\xdf\xbe\xbb\x9a\xc5\x12\x30\x67\x3c\xec\x0e\x9d\x9b\xd6\xeb\x84\x4d\x28\x71\xab\x36\x56\x53\xaf\x8f\xe9\xf8\xa0\xd0\x3e\xd4\x71\x74\x4e\x26\x7e\x54\x51\xae\x79\x3c\xaa\xf4\xb7\x71\x8a\x4e\x5a\x91\x4e\xba\x60\x93\x84\xc5\x61\x43\x93\x1a\x3d\x74\x33\x7d\xcf\x2d\x0c\x08\xed\xd1\x19\xee\xa9\x1f\x48\xbc\x76\xb6\x62\xb7\xe8\x3b\x96\x39\x08\x62\x77\xeb\xaa\x2a\xc3\xa0\xad\xdc\xd2\x43\x63\xa3\xd9\xe5\x47\x70\x19\xe1\x9e\xe0\xb2\x13\xba\xc1\x07\x98\x7c\xc9\x89\x0f\x7d\xa0\xaf\xb9\x4f\x78\x00\x97\xfc\x69\xa9\x7f\xa2\xd8\x3f\xe2\x97\x4c\x15\xbb\x9b\x09\xdd\x34\x3f\x7c\x29\xf2\xf6\x82\x9b\x12\x0b\xd4\xd4\xb5\x6e\xe1\xe7\x4f\x9f\xae\x61\x25\x48\x49\x10\x8d\x2f\x41\x3a\x0c\x99\x54\xe8\x58\xd5\xc7\x41\x80\x19\xee\x94\x08\x8a\xdf\x5d\xbd\xfb\xf4\xfb\xcb\xcf\x9f\x7e\xfe\x7c\xfb\xe6\xe6\x2e\xa8\x3b\x2c\xbd\x7f\xf3\xdb\xdd\xc4\xe1\x77\xc2\x29\x1e\xe3\xa8\x6f\x90\x13\x86\xb1\x7d\x39\xb0\xdf\x5b\x67\xab\xa9\x0d\x23\xd9\x0d\xae\xf3\x89\xe6\x93\x5e\x91\x13\x1b\xab\x30\x02\xc0\x98\xe7\x13\x3c\x22\x04\x71\x38\xc5\x82\x2b\xb1\x14\xb2\xc4\x82\x5d\x2b\xf5\xed\xa1\xad\x66\xa4\x98\xfb\x3c\xe1\x62\x5d\xd7\x37\x27\x07\xba\xe1\x3a\x1c\x9c\x87\x4b\x78\x28\xec\x30\xf6\x25\x52\xea\x0b\x63\xf7\xea\xf7\x96\xa5\x6c\x18\xa7\x10\x71\xe1\x09\x21\x38\x22\x94\x76\x1f\x06\x5f\x6b\x0c\xca\x60\x32\xe5\xa7\xbe\xb3\x58\x0c\x0a\x84\xc1\x87\x2f\xbf\x1c\x96\xb2\xae\xe9\xcb\x68\x27\x33\xa9\x1b\xf2\xe8\x32\x4e\xe0\x3a\x85\xe4\x33\xc5\x5c\x33\x42\xf1\x2a\x92\xbe\xbb\x9e\x28\xc5\x69\x87\xd0\x87\xc1\x7a\xea\xd9\xa3\x0c\x3d\x3d\x7b\x97\x77\x4c\x19\x46\xdd\xa4\x04\xa5\x12\x77\xd4\x97\x27\x93\x2e\x53\x11\x54\x0d\x85\xd1\x3f\xa0\xa7\xb0\x88\xe1\xb4\x0a\x85\x2d\xf4\x78\x61\xe2\x7f\xd1\x8f\xd1\xa7\xa9\x2c\x7d\x72\x89\x61\xc8\x0e\x9c\x0c\xfe\x13\x41\xb8\x18\xc4\x02\xb7\x28\x94\xbb\x7c\x50\xf6\x52\xb1\x6e\x92\x0e\x73\x34\xde\xe7\x9b\x5f\xe2\xcb\x84\x30\x9b\xb8\x77\xa5\x7c\x98\x96\x49\x79\xeb\xda\x21\x5d\xbf\xe5\xce\x38\x61\xf7\x54\xcc\xb1\xdb\x24\xba\x77\x21\x73\x34\x9c\xd2\x58\xe8\x7b\xe7\xbf\xbd\x48\x23\xf3\x34\x1f\xff\x7e\xff\xe6\xb7\xd3\x7f\xc6\x99\x3d\xb4\xd5\x0d\xa1\x5b\x8e\xc2\x66\x69\xa0\x33\x3e\x1c\x4e\x8d\xd3\x97\xf7\xf7\x90\x5d\x29\xcf\xca\x86\xc7\xbb\x29\xc5\xca\x09\x23\xcb\x9e\xe8\xa7\xf0\x57\x7c\xc6\x53\xeb\xb0\xc4\xf9\x8b\x8e\x9d\xe4\x1e\x8e\xcf\xdd\x06\x4f\xa1\x7f\x59\x65\x92\x03\xb3\xf9\xac\x7b\x0d\xd4\x84\xe9\xf1\xa7\x93\x9a\x43\x76\x3c\x19\xa7\xae\x4a\x18\xb5\xe6\x9e\x9c\x63\x88\x54\x81\x2e\x9a\xe3\x60\xb2\x09\x8f\x11\x96\x10\x1a\x53\xa0\x3b\xb0\xb1\x43\x2d\xbc\xda\x61\x68\x39\xa9\xf7\xc0\xcd\xc4\xce\x07\x31\x39\x28\x47\xcd\xaa\x50\xee\x7c\x1e\xff\xff\x66\x78\xda\x1c\xc1\x09\x4f\x97\xc7\xc0\x09\xef\x81\x3d\xaa\x3d\xd5\x11\x06\x9f\x09\xdd\xb1\xf3\x6c\xdc\xc1\x72\x4c\x03\xc7\xcf\xbf\xa9\x84\x3a\x2a\x00\xf2\x46\xcf\xa1\xa7\x1a\x1f\x67\x8f\x9a\x03\x39\x95\xec\x2d\x03\x8a\x26\xbc\xdb\x31\x4e\x5c\xb1\x95\x3f\x18\xc0\x53\xac\xba\xda\xd7\x55\xb6\xcb\x27\x4a\x5d\x7f\xa2\xe3\xc5\xa7\x2e\xff\xb1\xc5\x16\x54\xf1\xe3\x40\xf6\x44\x3b\x93\x48\xc5\x2c\x84\x6f\x1c\x4e\x5e\x01\x8e\xdc\x15\xb6\xdb\xc5\x40\x4f\x93\x74\xd5\x67\x6b\x50\x1e\x4a\x41\xa1\x14\x5b\xa3\x5b\x10\x52\x22\xc5\x8c\x5e\x62\x7c\x41\x7b\xd1\xbf\xd9\xdc\xad\x85\x26\xbc\x3b\x3d\xb9\xbf\x5f\xf4\x86\xb8\xe9\x6a\xf8\x31\x5b\xf4\x4c\x03\xfd\xc3\x78\x38\x4e\x76\xc4\x4e\xe4\x5d\x23\x7d\x94\x77\x1f\xc6\x79\x6e\xf1\x1a\x0f\xd4\x1a\x09\x2b\x6b\xb7\x5b\xc4\x9a\xbd\x7e\x10\x75\xb6\x51\x7e\x36\x87\x0a\x05\x03\xce\x09\x0d\x44\x98\xb1\xbb\x40\x68\x6a\xf2\x0e\x45\x35\x44\xc4\xe9\x81\x60\xcc\x7a\x41\x5e\x78\xbc\xe4\x04\xf3\xa8\xdf\x18\xfc\xc3\xf7\xce\x93\x54\x3c\x61\x60\xd6\xdf\x31\xeb\xeb\x51\xc2\xe4\x05\x66\x9b\x6c\x0e\xff\x41\xee\x2c\x5f\x69\xdb\x14\xa7\x59\x78\x20\xf2\x76\xcb\xf3\x09\x41\x2d\x9c\x57\xb2\xd1\xc2\xf5\xc6\xe8\xb8\x1c\x96\xd2\xee\xd6\xcb\x3d\x71\x1e\x95\xcc\x2b\xdb\x33\xdf\x6c\x6f\xdd\x96\x86\x61\xf3\xe0\x58\xb8\xe8\x52\xac\xe4\xf9\x37\x17\x0f\xff\x4d\x15\x7e\x13\xbd\xaf\xcf\x4a\xc3\x4b\xb5\x35\x4f\xb8\xc6\x87\x8e\xfa\x6a\x24\x3e\xf0\x90\x9e\xdf\x62\xe4\x77\x19\xfa\xc0\xc7\xbd\xe5\xd8\x91\x70\xf1\x23\xae\x73\x8b\x6e\x77\xe4\x1b\x06\x0f\x04\x63\x07\xc4\xb1\xfa\x43\x5a\x8a\xc5\x96\xcb\x58\xf4\x32\x42\x9f\x7c\x18\x79\x9e\x7c\x5b\x49\x3e\x92\xb0\x71\xc2\xd3\x5d\x68\xca\xb3\x89\x96\x5a\x91\x47\xb3\xe8\x44\xb8\xcc\x2f\xce\x2e\xce\x07\x90\x6e\x70\xa3\xc8\xbb\xf6\xb5\x22\x86\xf8\x56\x0a\x13\xdc\xf5\x00\x29\xd7\x91\x2d\x8a\x48\xb7\xa0\x8e\x30\x55\xbb\xcb\x8d\x2f\x8b\x42\xc5\x47\x16\x2e\xde\x2f\xb9\x79\x9f\xc0\x38\xee\x8f\xfd\xdb\xfd\x3d\xb8\xd0\x0a\x7c\xe1\xf4\x22\x7c\xf5\x9a\xe4\xd3\xf1\xb7\xfe\x82\x5f\xeb\x8e\xfd\xeb\x8f\xb7\x7d\xe3\x45\xf3\x6e\x20\x6a\x5c\xd7\x86\x81\x29\xac\x27\xb0\x81\x18\x2a\xd1\x86\xc7\x29\xbd\x1b\x9f\x28\x0d\x69\x6b\xb7\x4d\x0d\x8a\xa8\x41\x02\x6b\x80\x6c\x85\xf0\x7e\xf8\x56\xc4\xdc\x9b\x9a\xc6\x17\xc8\xc2\x50\xff\xfe\x35\xfb\x68\x0d\xce\xd2\x9d\x57\x41\x80\xf4\x0d\x32\x5e\x4e\xd3\x67\xc9\x7e\xb0\x09\xf2\x4d\x76\x86\x99\x6b\x76\x3e\x3b\xf9\x5f\x00\x00\x00\xff\xff\xbf\xb4\x26\x1f\x5f\x1c\x00\x00"), }, "/flux-secret.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "flux-secret.yaml.tmpl", diff --git a/pkg/install/templates/flux-deployment.yaml.tmpl b/pkg/install/templates/flux-deployment.yaml.tmpl index f77516cda..20abff070 100644 --- a/pkg/install/templates/flux-deployment.yaml.tmpl +++ b/pkg/install/templates/flux-deployment.yaml.tmpl @@ -66,7 +66,7 @@ spec: # There are no ":latest" images for flux. Find the most recent # release or image version at https://hub.docker.com/r/fluxcd/flux/tags # and replace the tag here. - image: docker.io/fluxcd/flux:1.25.0 + image: docker.io/fluxcd/flux:1.25.1 imagePullPolicy: IfNotPresent resources: requests: