diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 70952c0fc0..c47f415353 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: lint: name: Lint runs-on: ubuntu-latest - container: weaveworks/eksctl-build:ff2eff428ff2b334c713fd07916a10db37f60d29 + container: weaveworks/eksctl-build:83999a3391d78ed18a2e6093328d1122c927956f steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/integration-tests.yaml b/.github/workflows/integration-tests.yaml index a18bd15b1d..07afa27a3d 100644 --- a/.github/workflows/integration-tests.yaml +++ b/.github/workflows/integration-tests.yaml @@ -10,7 +10,7 @@ jobs: name: Run integration tests environment: "Integration tests" runs-on: ubuntu-latest - container: weaveworks/eksctl-build:ff2eff428ff2b334c713fd07916a10db37f60d29 + container: weaveworks/eksctl-build:83999a3391d78ed18a2e6093328d1122c927956f env: SSH: "/root/.ssh" steps: diff --git a/.github/workflows/release-candidate.yaml b/.github/workflows/release-candidate.yaml index fb34633960..060c6c3935 100644 --- a/.github/workflows/release-candidate.yaml +++ b/.github/workflows/release-candidate.yaml @@ -11,7 +11,7 @@ jobs: rc: name: Trigger release candidate build runs-on: ubuntu-latest - container: weaveworks/eksctl-build:ff2eff428ff2b334c713fd07916a10db37f60d29 + container: weaveworks/eksctl-build:83999a3391d78ed18a2e6093328d1122c927956f steps: - uses: actions/github-script@v3 name: Get integration tests status diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4abf29e579..b334ecf2eb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ jobs: rc: name: Trigger release build runs-on: ubuntu-latest - container: weaveworks/eksctl-build:ff2eff428ff2b334c713fd07916a10db37f60d29 + container: weaveworks/eksctl-build:83999a3391d78ed18a2e6093328d1122c927956f steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/tag-release.yaml b/.github/workflows/tag-release.yaml index 061e34419c..5f77d3ed0b 100644 --- a/.github/workflows/tag-release.yaml +++ b/.github/workflows/tag-release.yaml @@ -18,7 +18,7 @@ jobs: name: Tag release from version environment: release runs-on: ubuntu-latest - container: weaveworks/eksctl-build:ff2eff428ff2b334c713fd07916a10db37f60d29 + container: weaveworks/eksctl-build:83999a3391d78ed18a2e6093328d1122c927956f steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/update-generated.yaml b/.github/workflows/update-generated.yaml index 95fdcd9deb..fa9bbaaacb 100644 --- a/.github/workflows/update-generated.yaml +++ b/.github/workflows/update-generated.yaml @@ -55,7 +55,7 @@ jobs: update_aws_node: name: Update aws-node and open PR runs-on: ubuntu-latest - container: weaveworks/eksctl-build:ff2eff428ff2b334c713fd07916a10db37f60d29 + container: weaveworks/eksctl-build:83999a3391d78ed18a2e6093328d1122c927956f env: UPDATE_BRANCH: update-aws-node GOPRIVATE: "" diff --git a/.requirements b/.requirements index e02e5f2ad4..5683496f7e 100644 --- a/.requirements +++ b/.requirements @@ -3,7 +3,6 @@ github.com/cloudflare/cfssl/cmd/cfssl@v1.5.0 github.com/cloudflare/cfssl/cmd/cfssljson@v1.5.0 github.com/golangci/golangci-lint/cmd/golangci-lint github.com/goreleaser/goreleaser -github.com/kevinburke/go-bindata/go-bindata github.com/onsi/ginkgo/ginkgo@v1.16.4 github.com/vektra/mockery/cmd/mockery github.com/github-release/github-release diff --git a/Dockerfile b/Dockerfile index 90383b61d1..60427db242 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BUILD_IMAGE=/weaveworks/eksctl-build:ff2eff428ff2b334c713fd07916a10db37f60d29 +ARG BUILD_IMAGE=/weaveworks/eksctl-build:83999a3391d78ed18a2e6093328d1122c927956f FROM $BUILD_IMAGE as build WORKDIR /src diff --git a/Makefile b/Makefile index 2d0379382c..99203c2687 100644 --- a/Makefile +++ b/Makefile @@ -16,16 +16,8 @@ generated_code_deep_copy_helper := pkg/apis/eksctl.io/v1alpha5/zz_generated.deep generated_code_aws_sdk_mocks := $(wildcard pkg/eks/mocks/*API.go) conditionally_generated_files := \ - userdocs/src/usage/schema.json \ $(generated_code_deep_copy_helper) $(generated_code_aws_sdk_mocks) -all_generated_files := \ - pkg/nodebootstrap/bindata/assets.go \ - pkg/addons/default/assets.go \ - pkg/addons/assets.go \ - pkg/apis/eksctl.io/v1alpha5 \ - $(conditionally_generated_files) - .DEFAULT_GOAL := help ##@ Utility @@ -172,10 +164,6 @@ delete-integration-test-dev-cluster: build ## Delete the test cluster for use wh ## not present, the generation of assets will not fail but will not contain it. .PHONY: generate-always generate-always: pkg/addons/default/assets/aws-node.yaml ## Generate code (required for every build) - @# go-bindata targets must run every time, as dependencies are too complex to declare in make: - @# - deleting an asset is breaks the dependencies - @# - different version of go-bindata generate different code - @go-bindata -v go generate ./pkg/apis/eksctl.io/v1alpha5/generate.go go generate ./pkg/nodebootstrap go generate ./pkg/addons/default/generate.go @@ -193,7 +181,7 @@ generate-all: generate-always $(conditionally_generated_files) ## Re-generate al .PHONY: check-all-generated-files-up-to-date check-all-generated-files-up-to-date: generate-all ## Run the generate all command and verify there is no new diff - git diff --quiet -- $(all_generated_files) || (git --no-pager diff $(all_generated_files); echo "HINT: to fix this, run 'git commit $(all_generated_files) --message \"Update generated files\"'"; exit 1) + git diff --quiet -- $(conditionally_generated_files) || (git --no-pager diff $(conditionally_generated_files); echo "HINT: to fix this, run 'git commit $(conditionally_generated_files) --message \"Update generated files\"'"; exit 1) ### Update maxpods.go from AWS .PHONY: update-maxpods diff --git a/build/docker/build_image_manifest b/build/docker/build_image_manifest index ff2eff428f..83999a3391 100644 --- a/build/docker/build_image_manifest +++ b/build/docker/build_image_manifest @@ -3,7 +3,6 @@ "github.com/cloudflare/cfssl v1.6.1" "github.com/golangci/golangci-lint v1.42.0" "github.com/goreleaser/goreleaser v0.182.1" -"github.com/kevinburke/go-bindata v3.22.0+incompatible" "github.com/onsi/ginkgo v1.16.4" "github.com/vektra/mockery v1.1.2" "github.com/github-release/github-release v0.10.0" @@ -15,5 +14,5 @@ "k8s.io/code-generator v0.21.2" "sigs.k8s.io/mdtoc v1.0.1" 100644 blob a73dcb54fd6215c023ffea7f781e313b41841135 build/docker/Dockerfile -100644 blob e02e5f2ad4516bd586dd870006e14a8a5a168093 .requirements +100644 blob 5683496f7ee0443658a663785d87e404096459d6 .requirements 100755 blob c1129ff1ff85ac2c53f908a577675ea59a9325a7 build/scripts/install-build-deps.sh diff --git a/build/docker/image_tag b/build/docker/image_tag index d6c0fab08b..387232386a 100644 --- a/build/docker/image_tag +++ b/build/docker/image_tag @@ -1 +1 @@ -ff2eff428ff2b334c713fd07916a10db37f60d29 +83999a3391d78ed18a2e6093328d1122c927956f diff --git a/go.mod b/go.mod index c6e835409d..66e8f8b882 100644 --- a/go.mod +++ b/go.mod @@ -185,7 +185,6 @@ require ( github.com/julz/importas v0.0.0-20210419104244-841f0c0fe66d // indirect github.com/justinbarrick/go-k8s-portforward v1.0.4-0.20200904152830-b575325c1855 github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 - github.com/kevinburke/go-bindata v3.22.0+incompatible github.com/kevinburke/rest v0.0.0-20210106114233-22cd0577e450 // indirect github.com/kevinburke/ssh_config v1.1.0 // indirect github.com/kisielk/errcheck v1.6.0 // indirect diff --git a/go.sum b/go.sum index e7fa3c3df2..2bccb422f5 100644 --- a/go.sum +++ b/go.sum @@ -1132,8 +1132,6 @@ github.com/k0kubun/pp v2.3.0+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3t github.com/karrick/godirwalk v1.7.5/go.mod h1:2c9FRhkDxdIbgkOnCEvnSWs71Bhugbl46shStcFDJ34= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= -github.com/kevinburke/go-bindata v3.22.0+incompatible h1:/JmqEhIWQ7GRScV0WjX/0tqBrC5D21ALg0H0U/KZ/ts= -github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/rest v0.0.0-20210106114233-22cd0577e450 h1:Lr2sEj5wWzk82b/L8LsLzsCxywQaOpcr0ti/qcfzCOk= github.com/kevinburke/rest v0.0.0-20210106114233-22cd0577e450/go.mod h1:pD+iEcdAGVXld5foVN4e24zb/6fnb60tgZPZ3P/3T/I= github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= diff --git a/pkg/addons/assets.go b/pkg/addons/assets.go deleted file mode 100644 index 5baaf0a456..0000000000 --- a/pkg/addons/assets.go +++ /dev/null @@ -1,458 +0,0 @@ -// Code generated by go-bindata. DO NOT EDIT. -// sources: -// assets/efa-device-plugin.yaml (3.084kB) -// assets/neuron-device-plugin.yaml (3.623kB) -// assets/nvidia-device-plugin.yaml (2.369kB) -// assets/vpc-admission-webhook-config.yaml (524B) -// assets/vpc-admission-webhook-csr.yaml (234B) -// assets/vpc-admission-webhook-dep.yaml (1.675kB) -// assets/vpc-admission-webhook.yaml (231B) -// assets/vpc-resource-controller-dep.yaml (1.679kB) -// assets/vpc-resource-controller.yaml (565B) - -package addons - -import ( - "bytes" - "compress/gzip" - "crypto/sha256" - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo - digest [sha256.Size]byte -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -func (fi bindataFileInfo) Name() string { - return fi.name -} -func (fi bindataFileInfo) Size() int64 { - return fi.size -} -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} -func (fi bindataFileInfo) IsDir() bool { - return false -} -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _efaDevicePluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x56\x4d\x8f\xdb\x36\x10\xbd\xfb\x57\x0c\x1c\xec\xad\x92\xba\xd9\x5d\x20\x50\x4f\xc6\xc6\x2d\x82\x6e\xb6\x41\x9d\xb4\x87\xa2\x87\x31\x39\xb2\x08\x53\x24\xcb\x19\xd9\xeb\xfe\xfa\x82\xb2\xac\x58\xce\x3a\xeb\x5e\x72\x8a\x2f\x16\xc8\xf7\xe6\xcd\x0c\x1f\x3f\xb2\x2c\x9b\x60\x30\x7f\x50\x64\xe3\x5d\x09\x18\x02\x17\x9b\xeb\xc9\xda\x38\x5d\xc2\x5b\xa4\xc6\xbb\x05\xc9\xa4\x21\x41\x8d\x82\xe5\x04\xc0\x61\x43\x25\xe0\x96\x33\xaa\x30\x5b\xbf\xe1\x4c\xd3\xc6\x28\xca\x82\x6d\x57\xc6\x65\xba\x63\x31\x49\x8f\xe5\x80\x8a\x4a\x58\xb7\x4b\xca\x78\xc7\x42\xcd\x84\x03\xa9\x14\x8a\xc9\x92\x12\x1f\xd3\x37\x40\x83\xa2\xea\x07\x5c\x92\xe5\xfd\xc0\x41\xeb\xbc\xd8\x04\xa0\x0d\x1a\x85\x16\x12\x51\x68\xb5\xdb\x13\x65\x17\xa8\x84\xdf\xbd\xb5\xc6\xad\x3e\x75\x80\x09\x80\x50\x13\x2c\x0a\xf5\x6a\x47\x25\xa5\xdf\x2b\xf8\x58\x1b\x06\x74\xce\x0b\x8a\xf1\x0e\x0c\x83\xa6\x10\x49\xa1\x90\xce\xe1\x57\x0a\x02\x35\x45\x82\xca\x47\x58\xa2\x5a\x6f\x31\x6a\x50\xbe\x09\x28\x66\x69\xac\x91\xdd\x10\x6b\x41\x04\xb5\x48\xe0\xb2\x28\x52\xe5\xd1\x91\x10\xe7\xc6\x17\xda\x2b\x2e\x04\x79\xcd\x05\xea\xc6\x38\xc3\x42\x31\x53\xb6\x4d\xff\xc5\xaa\xc5\x88\x4e\x88\x74\xc6\xaa\x26\xdd\xa6\x0a\x32\x15\x8d\x18\x85\x36\x43\xad\xbd\xcb\x82\xd7\x5c\xf4\x52\x9f\xf3\x1d\x9a\x06\xd0\x53\x29\xe6\x68\x43\x8d\xf9\x38\x83\x21\x5a\xf0\xba\x84\xe9\xb4\xa7\xd9\x51\xe7\x5f\x5c\xe7\x0e\x77\x58\xc8\xee\x9b\x62\x9a\x9e\x29\xe5\x5b\x27\x25\x68\xaa\xb0\xb5\xd2\xcf\x8a\xb7\x14\x4f\xf3\xcc\x60\x4d\xbb\x12\xee\xfb\x84\x66\xa9\x3a\xfe\xcd\xd9\xdd\x80\x00\xf0\x21\xf1\x7c\x2c\x61\xfe\x64\x58\xf8\x94\x8c\x5b\xce\xb1\xc1\x7f\xbd\xcb\x95\x6f\x0a\xaa\xf0\x12\x32\x00\x55\x15\x29\x29\xe1\xd1\x2f\xfa\x6e\x0d\x8b\xf7\x1e\xe3\x1a\x24\xb9\x21\x78\x0d\xc8\x80\x70\xe8\x19\xa0\xd6\x99\x77\x3f\xc1\xb6\x26\x07\xe4\x70\x69\x49\xff\x00\x52\xd3\x29\x64\x88\x36\x2c\x06\x44\x4a\x3d\x22\x4e\x1f\xbe\x8d\x8a\xb8\xb3\xd2\x09\x31\x89\x32\xb0\x07\xa9\x51\x52\xe4\x1d\x28\xfc\x1c\x6e\x49\x89\xde\xc7\xd4\x80\x95\x50\x04\x84\x0a\x8d\x6d\x23\xe5\xdf\xde\x81\x21\x1a\x1f\x8d\xec\xee\x2d\x32\x3f\x76\xa6\x99\xee\xf7\x79\xe6\xbc\xa6\x81\x7a\xf0\x19\x56\x95\x71\x46\x76\x47\x4e\xf3\x9a\x66\x5f\x8c\xa6\x22\xe6\x3f\xcf\x80\xdb\x10\x7c\x14\xd2\x60\x1c\x0b\x3a\x45\x5c\x0e\x95\xa5\x5a\xf2\x13\x0b\xcc\xfe\x5c\xcc\xef\x5f\x17\x69\xab\xb3\x14\x9f\x98\xe2\x2f\xad\xd1\x94\xac\x91\xd7\xd2\xd8\x57\xc9\xcf\x87\x58\x59\x3a\x2b\x8e\x7d\x11\xe9\x9f\xd6\x44\xd2\x6f\xdb\x68\xdc\x6a\x31\xb4\xe0\xdd\xca\xf9\x61\x78\xfe\x44\xaa\x4d\x66\x3e\x4e\x77\x5f\xc8\xa2\x3f\xd3\x3e\x52\x6c\x78\x3c\x9d\x3c\xdb\x1d\x72\xf3\xa7\x10\x89\x79\xbc\x19\x8e\x51\x9d\xb3\xa7\x4b\x92\xd3\xbd\x3b\x4a\x7b\xfa\x0c\xf7\xd8\xf3\xef\xdc\xb3\x80\x0d\xda\x96\x9e\x15\xde\x8b\xab\x3b\x97\x5f\xbf\x79\xb2\x18\x57\xf4\x55\x50\x3a\x42\xed\x59\xc4\xea\x56\xbf\x04\x31\x37\xe4\xf2\xd7\xb7\x2f\x48\x75\xa8\x17\x02\xb9\xea\xfa\xe5\x40\xcd\x9d\xbe\x40\xae\xb9\xbb\x00\x14\x6e\x2e\x09\x15\x2f\x12\x8c\x17\x09\xde\xea\x73\xa0\xff\x67\xaa\xe4\xd1\xef\xa6\xfa\x6e\xaa\x33\xa6\xaa\x3d\xcb\x23\xc9\xd6\xc7\x75\x09\x12\xdb\xc3\xb8\xf2\x4e\xd0\x38\x8a\xa3\xeb\xdb\x34\xb8\x4a\xe7\xfd\x15\xe7\x7a\x1d\x73\x52\x31\xbf\xe2\xfc\x8a\x0b\x4a\x97\xcb\xb9\xa7\x43\xb9\xf9\x31\xbf\xc9\x6f\x8e\x9d\x76\xc9\x63\x63\xff\x63\x52\x6d\x77\xdd\x78\x27\xf4\x24\x63\xc7\xa1\xb5\x7e\xfb\x21\x9a\x8d\xb1\xb4\xa2\x39\x2b\xb4\xdd\x9b\xa3\x84\x0a\x2d\x8f\x1b\xa1\x30\x60\xf7\x6a\x33\x5f\xfa\x56\x47\x1f\x4a\xf8\x6b\x3a\x7b\x78\x98\xfe\x7d\x34\xb7\xf1\xb6\x6d\xe8\x7d\x7a\xe0\x9c\x70\xb2\xbe\x84\x73\x69\xa7\x5f\x93\x78\x1f\x50\xea\x12\x8a\x0d\xc6\xc2\x9a\x65\x77\x35\x5b\x92\x62\xc4\x3b\xdc\x47\x7b\xb9\x51\xc7\xbf\xae\x92\x56\xaf\x13\x18\x29\x87\x8b\x24\xff\x0b\x00\x00\xff\xff\xf5\xa9\x92\x60\x0c\x0c\x00\x00") - -func efaDevicePluginYamlBytes() ([]byte, error) { - return bindataRead( - _efaDevicePluginYaml, - "efa-device-plugin.yaml", - ) -} - -func efaDevicePluginYaml() (*asset, error) { - bytes, err := efaDevicePluginYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "efa-device-plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0x88, 0xf3, 0x33, 0x57, 0xdb, 0x84, 0xb8, 0x9e, 0x87, 0x8d, 0x16, 0xec, 0x91, 0x23, 0x4, 0xcc, 0x1d, 0x9f, 0x58, 0x2a, 0xa8, 0xee, 0x6b, 0xa7, 0xe9, 0xd6, 0x14, 0xbf, 0x16, 0x57, 0xeb}} - return a, nil -} - -var _neuronDevicePluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4d\x73\xdb\x36\x10\xbd\xeb\x57\xec\x28\xd7\x92\xac\xfb\x35\x19\xf6\xe4\x38\x4a\x26\xd3\xc4\xf1\x44\x4d\x2f\x9d\x4e\x67\x05\x2c\x29\x54\x20\x80\x02\x0b\xd9\xca\xaf\xef\x80\xa4\x68\xd2\x66\x58\xa7\xd3\x9e\xca\x13\x29\xec\xbe\x5d\x3c\xbc\x7d\x50\x96\x65\xab\x83\x32\xb2\x84\x2b\x1d\x03\x93\xff\x60\x35\xad\xd0\xa9\x5f\xc8\x07\x65\x4d\x09\x7e\x87\x22\xc7\xc8\x7b\xeb\xd5\x27\x64\x65\x4d\x7e\x78\x1e\x72\x65\x8b\xe3\xc5\xaa\x21\x46\x89\x8c\xe5\x0a\xc0\x60\x43\x25\x18\x8a\xde\x9a\x4c\xd2\x51\x09\xca\x9c\x8e\xb5\x32\x2b\x1f\x35\x85\x14\x93\x01\x3a\xf5\xda\xdb\xe8\xda\xcf\xf4\x64\xb0\x5e\xb7\xaf\x9e\x82\x8d\x5e\xd0\x68\xc5\x58\x49\xa1\xfd\x3a\x92\xdf\x8d\x16\x6a\xe2\xe1\x5d\xab\x70\xff\x71\x8b\x2c\xf6\x5f\x5e\x88\x8e\x64\x78\xb6\x92\xf0\x84\x4c\xc3\xa7\xfb\x67\xf8\xce\xca\x59\xf4\xe8\xe4\x1c\xfa\x7f\xb3\xc9\x96\xcd\x22\x30\x72\x9c\x6d\x66\x5a\xbd\x6f\x2d\x09\x64\x2c\x87\xe3\x45\xaf\x97\x2d\xf9\x74\xc4\x97\x42\xd8\x68\xf8\xa9\x4a\xe8\x16\x83\x43\x41\x25\x1c\xe2\x8e\xb2\x70\x0a\x4c\xcd\x6a\x56\x88\x2f\x94\x91\xca\xd4\xff\xba\x1e\x3f\xdb\x85\xb7\x9a\x3e\x50\x95\xd2\xcf\xd4\x2e\x54\x5c\x01\x3c\x9e\x9d\xc5\xc2\x21\xee\xfe\x20\xc1\xfd\x2c\xcc\x12\x99\xd8\x5f\x6c\x7d\x91\xc2\x67\xb0\x67\x76\xa1\x2c\x8a\xb4\xe2\x0d\x31\xb5\xdc\x48\x2b\x42\x21\xac\x11\xe4\x38\x14\x74\xc7\x64\x64\x76\x1f\x52\x08\xdb\xb8\xc8\x94\x05\xb6\x1e\x6b\xca\x0c\x71\x31\x29\x1c\x8a\xc9\x29\xa0\x73\xa1\x18\xb4\xf0\x12\xa9\xb1\x66\x4b\x4f\x95\x41\x26\xdb\x84\xd0\x0a\xfc\x33\xbb\x09\x8e\x44\x42\x09\xa4\x49\xb0\xf5\x9d\x4e\x9b\xa4\xd1\xb7\xb8\x23\x3d\x08\x77\xa9\x4c\xd2\x79\x27\xe4\x2d\x7b\x64\xaa\x4f\x5d\x16\x9f\x1c\x95\xf0\xc1\x6a\xad\x4c\xfd\xf1\x3c\x84\x4c\x8d\xd3\xc8\xd4\x97\x1a\x6d\x25\x3d\x68\x8c\xe5\xf6\xf8\x87\xd2\x00\x41\xec\x49\x46\x4d\x3e\x47\xed\xf6\x98\x4f\x59\x17\x5e\xb1\x12\xa8\x33\x67\x65\x79\x9e\x4c\x00\x3d\xe9\xff\xef\x77\x00\x70\x26\xa3\x7d\x9f\xe8\x65\x41\x26\x00\x6c\x35\xf9\x87\x2d\x67\x70\xa0\x53\x09\x57\x7d\x6f\x97\x52\x5a\x13\xde\x1b\x7d\x1a\x22\x00\xac\x4b\x79\xd6\x97\xb0\xb9\x53\xa1\x77\xc6\x51\x32\xde\x86\x1c\x1b\xfc\x64\x4d\x2e\x6c\x53\x74\x2d\x3c\x25\x1f\x80\xaa\x8a\x04\x97\x70\x6d\xb7\x3d\x77\xfd\xe2\x33\x78\x87\xfe\x00\xbc\x57\x21\xf9\x25\x60\x00\x84\x33\x83\x80\x52\x66\xd6\xfc\x08\xb7\x7b\x32\x40\x06\x77\x9a\xe4\x57\xc0\x7b\x7a\x18\x32\xa0\x0d\x47\x93\xbc\x90\xfc\x91\xc2\xbd\x29\x42\x65\xfd\xc3\xc4\xd6\xa4\x21\x58\xe0\x3d\x72\x42\x3e\x81\xc0\x7b\xb8\x1d\xa5\xf4\x1e\x53\x02\x56\x4c\x1e\x10\x2a\x54\x3a\x7a\xca\x87\xb8\x2d\xd1\xd2\x0c\x32\x86\x43\x28\x50\x36\xca\xa8\xe4\x19\x99\xe8\xbc\xa3\xa8\x23\x7a\x34\x4c\x24\xb3\xbe\x8a\x32\x75\x36\x28\x08\xd3\x31\x25\x1d\x85\xa2\x2f\xe5\xbc\xb2\x5e\xf1\xe9\x4a\x63\x08\xd7\xad\x84\xd6\xdd\xec\x64\xc9\xe9\x87\xd4\xb3\xea\xb0\xaa\x94\x51\x7c\x1a\xe9\xce\x4a\xba\x7c\xf4\x6b\xba\x3b\xfe\x8c\xca\x93\x7c\x19\xbd\x32\xf5\x76\xe8\xe6\x4d\x6d\xec\xf0\xf3\xe6\x8e\x44\x4c\xd2\x1a\x67\x76\x98\xdb\x7e\x64\x7f\x26\xdf\x84\xe9\x72\x52\x50\x3b\xc3\x9b\x3b\xe7\x29\x84\xa9\x34\xc7\x51\xad\xce\xd6\x3b\xe2\x87\x43\xa5\x4c\x60\x34\x82\xb2\x34\xc4\xeb\x99\xdc\xb1\xfc\xde\x98\xd9\x80\x23\xea\x48\xb3\x85\xbb\xe2\xca\x54\x17\xf9\x9d\x46\x5f\xd3\x72\xcc\x37\x4f\x09\xfa\xe1\x49\x48\xdf\xcd\x46\x7d\x19\x5d\x89\xfd\xff\x25\x5d\xc2\x1a\x46\x65\xc8\x4f\x8c\x4e\x35\x58\xa7\xb1\x70\x71\xa7\x95\xc8\x49\xf8\x1c\x6f\x43\x6f\x57\xc5\x9c\x71\x96\x17\xf9\xf7\xf9\xb7\xf9\xd7\x63\xa2\x5a\x94\x9b\xa8\xf5\x8d\xd5\x4a\x9c\x4a\xb8\xd4\xb7\x78\x1a\x7b\x5a\x67\xe0\x87\xe7\x21\x9b\x35\x71\xc1\x7e\x6c\x80\xe6\x38\x65\x32\xeb\xf3\x7f\xfa\xf8\x62\x73\xf5\xfe\xfa\xd5\x9b\xd7\xab\x19\xfa\x4b\x28\x88\xc5\xc8\x52\xda\x57\x4d\x9c\x0b\x6b\xaa\x59\xc0\xeb\xf7\x2f\x37\xbf\x5f\x5f\xbe\xdb\xcc\xe1\xbd\xf2\xb6\x79\x7c\xa2\x95\x22\x2d\xfb\x7f\x40\xb3\x6b\x37\xc8\xfb\xb2\xbd\x8f\xf2\x24\xb6\xe4\x3b\xa3\xd0\x40\x22\xb6\x9e\x64\x0d\xd3\x1d\x4f\x51\x50\x6b\x7b\x7b\xe3\xd5\x51\x69\xaa\x69\x13\x04\xea\xf6\x6e\x2a\xa1\x42\x1d\xa6\xe7\x2d\xd0\xe1\x4e\x69\xc5\xea\xb1\xee\xa4\xb7\xae\x84\x5f\xd7\x97\x6f\xdf\xae\x7f\x1b\xad\x1d\xad\x8e\x0d\xbd\x4b\xb7\x62\x98\x67\x78\xee\x8e\x3c\x3f\x4d\xca\xeb\x76\x57\x1c\xd1\x17\x5a\xed\xce\x0c\x3f\xf8\x27\x34\x0b\xad\x4c\x85\x59\x83\x6e\x01\xd5\xc7\x73\xcd\xae\xd3\x89\x54\x97\x1b\xdc\xdb\xd0\xa1\x4c\xe0\xdd\x17\x75\xbb\xd0\xe9\x22\x7c\x6a\xfb\xaf\x00\x00\x00\xff\xff\xb8\x35\xe9\xa2\x27\x0e\x00\x00") - -func neuronDevicePluginYamlBytes() ([]byte, error) { - return bindataRead( - _neuronDevicePluginYaml, - "neuron-device-plugin.yaml", - ) -} - -func neuronDevicePluginYaml() (*asset, error) { - bytes, err := neuronDevicePluginYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "neuron-device-plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x74, 0x40, 0xab, 0xb9, 0x89, 0x7d, 0xb8, 0x93, 0xb5, 0xea, 0x8f, 0x3d, 0x97, 0x97, 0xa2, 0x7c, 0xd4, 0xde, 0xb3, 0x44, 0xa0, 0xd3, 0xf9, 0xa4, 0xde, 0x3b, 0x6, 0xdc, 0xc6, 0x8d, 0x8c}} - return a, nil -} - -var _nvidiaDevicePluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x55\x41\x8f\xdb\x36\x13\xbd\xeb\x57\x3c\xd8\x97\x04\x58\x49\x9b\x9c\xbe\x28\xf8\x0e\xee\xee\x16\x35\xb2\xb1\x83\xf5\x26\x41\x50\xf4\x30\x26\xc7\x12\x61\x8a\x64\x49\xca\x5e\xfd\xfb\x82\xb2\xd6\x6b\xa5\x40\x93\x53\x81\xea\x62\x43\x7a\x33\xf3\xe6\xbd\x19\x72\x8e\x1b\xeb\x7a\xaf\xea\x26\xe2\x95\x78\x8d\xb7\xd7\x6f\xde\x5d\x61\xf5\x65\x79\xbb\x5c\xe0\x66\xfd\xf0\x69\xfd\xb0\x78\x5c\xae\x57\x05\xb0\xd0\x1a\x03\x30\xc0\x73\x60\x7f\x60\x59\x64\xf3\x6c\x8e\x7b\x25\xd8\x04\x96\xe8\x8c\x64\x8f\xd8\x30\x16\x8e\x44\xc3\xcf\x5f\xae\xf0\x85\x7d\x50\xd6\xe0\x6d\x71\x8d\x57\x09\x30\x1b\x3f\xcd\x5e\xbf\xcf\xe6\xe8\x6d\x87\x96\x7a\x18\x1b\xd1\x05\x46\x6c\x54\xc0\x4e\x69\x06\x3f\x09\x76\x11\xca\x40\xd8\xd6\x69\x45\x46\x30\x8e\x2a\x36\x43\x99\x31\x49\x91\xcd\xf1\x6d\x4c\x61\xb7\x91\x94\x01\x41\x58\xd7\xc3\xee\x2e\x71\xa0\x38\x10\x4e\x4f\x13\xa3\xab\xca\xf2\x78\x3c\x16\x34\x90\x2d\xac\xaf\x4b\x7d\x02\x86\xf2\x7e\x79\x73\xb7\xda\xdc\xe5\x6f\x8b\xeb\x21\xe4\xb3\xd1\x1c\x52\xe3\x7f\x76\xca\xb3\xc4\xb6\x07\x39\xa7\x95\xa0\xad\x66\x68\x3a\xc2\x7a\x50\xed\x99\x25\xa2\x4d\x7c\x8f\x5e\x45\x65\xea\x2b\x04\xbb\x8b\x47\xf2\x9c\xcd\x21\x55\x88\x5e\x6d\xbb\x38\x11\xeb\x99\x9d\x0a\x13\x80\x35\x20\x83\xd9\x62\x83\xe5\x66\x86\x5f\x16\x9b\xe5\xe6\x2a\x9b\xe3\xeb\xf2\xf1\xb7\xf5\xe7\x47\x7c\x5d\x3c\x3c\x2c\x56\x8f\xcb\xbb\x0d\xd6\x0f\xb8\x59\xaf\x6e\x97\xc9\xa8\x0d\xd6\xbf\x62\xb1\xfa\x86\x0f\xcb\xd5\xed\x15\x58\xc5\x86\x3d\xf8\xc9\xf9\xc4\xdf\x7a\xa8\x24\xe3\x60\x1d\x36\xcc\x13\x02\x3b\x7b\x22\x14\x1c\x0b\xb5\x53\x02\x9a\x4c\xdd\x51\xcd\xa8\xed\x81\xbd\x51\xa6\x86\x63\xdf\xaa\x90\xcc\x0c\x20\x23\xb3\x39\xb4\x6a\x55\xa4\x38\xbc\xf9\x5b\x53\x45\x96\x91\x53\xa3\xfd\x55\xd2\x2c\x94\x87\x37\xd9\x5e\x19\x59\xe1\x96\xb8\xb5\x66\xc3\x31\x6b\x39\x92\xa4\x48\x55\x06\x18\x6a\xb9\x82\x39\x28\xa9\x28\x97\x7c\x50\x82\x73\xa7\xbb\x5a\x99\x5c\x0e\x01\x81\xe3\x08\x0b\x8e\x04\x57\xd8\x77\x5b\xce\x43\x1f\x22\xb7\x59\xe2\x9e\xb2\x04\xd6\x2c\xa2\xf5\xe9\x3f\xd0\x52\x14\xcd\x3d\x6d\x59\x87\xd3\x8b\x7f\x2e\x13\x32\xa0\x73\x92\x22\x6f\xa2\xa7\xc8\x75\x7f\x8a\x8a\xbd\xe3\x0a\x0f\x56\x6b\x65\xea\xcf\x03\x20\x03\x22\xb7\x4e\x53\xe4\xb1\xd4\x45\x2b\xe9\x99\xe3\x31\x4d\x33\x19\x63\x4f\x2a\x0d\x3e\xb3\xf3\x2c\x28\xb2\x2c\xf0\x21\x0d\x78\xc3\xfe\xa4\xff\x96\xc4\xfe\x48\x5e\x0e\xf3\x4e\x51\x6d\x95\x56\xb1\x3f\xe7\x4a\x96\xa5\xd1\x0d\x55\x59\xa6\xb6\xbd\xe1\xc8\xa1\x50\xb6\x94\x56\x84\x32\x52\xd8\x87\x92\x64\xab\x8c\x0a\x91\x7d\x2e\x74\x97\x7e\xcb\xba\x23\x4f\x26\x32\xcb\x3c\x88\x86\x65\x97\x3a\xc8\x45\x9a\x51\x41\x3a\x27\x29\xad\xc9\x9d\x95\xa1\x1c\x4b\xbd\xf0\x3d\x2b\x06\x8c\xa1\xec\x0b\xd2\xae\xa1\x62\xca\xe0\x9c\xcd\x59\x59\x61\x36\x1b\xc3\xf4\x44\xf6\x1f\x0b\x0f\x3c\x7b\x38\x48\x6e\x35\xfb\x29\x8f\x51\xd1\x97\x2f\xff\x0d\x45\x73\xec\xb9\xaf\x70\x33\x22\x16\x09\x10\xd6\x46\xf7\x67\x65\xac\x4b\x0d\x59\x5f\xe1\xee\x49\x85\x18\xa6\x81\x27\xc5\x0a\x61\xdb\xb2\x76\xdd\x8f\x82\x00\xde\xed\x58\xc4\x0a\x2b\xbb\x19\x6d\x3b\xf7\xfc\x91\xfc\xfe\x74\xc8\x3a\x2b\x41\x21\x1d\x97\x23\x2d\x90\x94\xb9\x35\xef\x71\x6c\xd8\x80\x4d\x3a\xdf\xe4\xd5\xb0\xd2\xdf\x41\xce\xd9\xce\x53\xf1\x7c\x2f\x0c\x17\x84\xed\xbc\xe0\x30\x38\xf0\x5d\x60\x2a\x1a\x10\x2c\x62\x43\x31\x65\xee\x21\xe8\x25\xdd\x96\x53\xf8\x98\x53\x82\x76\x91\x3d\x08\x3b\x52\xba\xf3\x5c\xfc\xfb\xc6\x39\xaf\xac\x57\xb1\xbf\xd1\x14\xc2\x6a\x98\xde\xd9\xe9\xb4\xc9\x8d\x95\x7c\x0e\x7d\x1e\x78\x61\x4d\xba\x83\xd8\x9f\x27\x36\x87\x6a\xa9\x1e\xa6\x5e\xf8\xc4\xf0\xe4\x65\xb9\xff\x5f\x98\x6e\x40\x75\xb8\x2e\xde\x15\xd7\x3f\xb3\x2b\x22\xfa\x33\x8c\x7c\x1d\x2a\xfc\x3e\xcb\xf3\xa4\x52\x6e\x4d\xae\x8c\x8a\x39\x7b\x6f\xfd\xff\x77\xa4\x03\xcf\xfe\x78\x59\x62\x16\xdd\xd0\x8e\x35\x91\x9f\xe2\xcb\x62\x02\xa4\xb5\x3d\x7e\xf2\xea\xa0\x34\xd7\x7c\x17\x04\xe9\x61\xc1\x2a\x0c\x49\x2e\x90\x82\x1c\x0d\x8b\xa4\x38\x5c\x66\x00\xa4\xb7\x2e\x71\x59\xdc\xdf\x5f\x14\x3d\x58\xdd\xb5\xfc\xd1\x76\x26\x4e\xf0\xf9\xd8\xe2\xa4\xb7\x49\xbe\x36\xc5\x7c\xa2\xd8\x54\x28\x0f\xe4\x4b\xad\xb6\x83\xdd\x9a\x63\x39\x89\x7a\x9e\xfc\x53\xa9\x8b\x2a\x3f\xaa\xd1\xd8\x70\x2a\x30\xa9\xeb\x7e\xaa\x64\xf6\x57\x00\x00\x00\xff\xff\xaf\x6c\xf5\xd9\x41\x09\x00\x00") - -func nvidiaDevicePluginYamlBytes() ([]byte, error) { - return bindataRead( - _nvidiaDevicePluginYaml, - "nvidia-device-plugin.yaml", - ) -} - -func nvidiaDevicePluginYaml() (*asset, error) { - bytes, err := nvidiaDevicePluginYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "nvidia-device-plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x34, 0xa1, 0xba, 0x6, 0x98, 0xf5, 0x96, 0x4d, 0x79, 0xa1, 0x9a, 0x47, 0x9, 0x3e, 0x2d, 0x8e, 0x64, 0x45, 0xf5, 0x9d, 0xcf, 0x3f, 0xf6, 0x8d, 0x97, 0x94, 0xa3, 0x59, 0xec, 0x4a, 0x29}} - return a, nil -} - -var _vpcAdmissionWebhookConfigYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x4f\x6b\xf3\x30\x0c\xc6\xef\xf9\x14\x22\xf7\xa4\xf4\xf6\xe2\xdb\x4b\x29\x63\x87\xc1\x18\x63\x3b\x8c\x1d\x14\x47\x4d\x45\x62\xcb\x58\x76\x4a\xf7\xe9\x47\xfe\xb4\xac\xb0\xd5\x17\xdb\x7a\xa4\xdf\x63\xc9\x18\xf8\x8d\xa2\xb2\x78\x03\xd8\x3a\xd6\xe9\x18\xa9\x63\x4d\x11\x13\x8b\xaf\xfb\x7f\x5a\xb3\x6c\xc6\x6d\x43\x09\xb7\x45\xcf\xbe\x35\xf0\x94\x13\x26\xf6\xdd\x3b\x35\x47\x91\x7e\x27\xfe\xc0\x5d\x5e\x2a\x0a\x47\x09\x5b\x4c\x68\x0a\x00\x8f\x8e\x0c\x8c\xc1\x56\x57\x7a\x75\x5a\x8a\x2a\x7b\xe8\xd6\x0c\x0d\x68\xc9\x40\x9f\x1b\xaa\xf4\xac\x89\x5c\x01\x30\x60\x43\x83\x4e\x10\x00\x0c\xe1\x0f\x4a\xb1\xee\x73\x62\x75\xcf\xaf\x46\x87\x5f\xe2\xf1\xa4\xb5\x15\x37\x63\xed\xc0\xe4\xd3\xf2\xfa\xc5\x08\x40\x29\x8e\x6c\xe9\x72\xbd\xdb\xc2\x4d\xce\xaf\x4d\x2c\x2b\x60\x3a\x1a\x28\x37\x6e\x1a\x1b\x95\x73\x3c\xe6\x81\xf4\xe2\x52\x81\x04\x5a\xc6\xa7\x06\x3e\xa0\xdc\xbd\xec\xff\xbf\xee\x4b\xf8\xbc\x32\x30\xf0\x43\x94\x1c\x26\xbd\x2c\x6f\xe2\xeb\x0f\xce\xca\xb8\xfd\xa1\x45\x52\xc9\xd1\xd2\xac\x04\x69\x75\xd5\x0e\xc8\x43\x8e\xf4\x2c\x03\xdb\xb3\x81\xc7\xce\x4b\xa4\xe2\x3b\x00\x00\xff\xff\x49\xee\x9e\x02\x0c\x02\x00\x00") - -func vpcAdmissionWebhookConfigYamlBytes() ([]byte, error) { - return bindataRead( - _vpcAdmissionWebhookConfigYaml, - "vpc-admission-webhook-config.yaml", - ) -} - -func vpcAdmissionWebhookConfigYaml() (*asset, error) { - bytes, err := vpcAdmissionWebhookConfigYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "vpc-admission-webhook-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x11, 0x23, 0x17, 0x2f, 0xdc, 0x4e, 0x18, 0xaa, 0xc8, 0x66, 0xee, 0xf3, 0xc1, 0x85, 0x63, 0xb1, 0xe3, 0x53, 0x57, 0x80, 0x96, 0xe6, 0x54, 0x26, 0x46, 0x6b, 0x3f, 0x17, 0x20, 0x31, 0x8}} - return a, nil -} - -var _vpcAdmissionWebhookCsrYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x8d\x4b\x4e\xc4\x30\x10\x44\xf7\x3e\x45\x5f\x20\x41\xb3\x43\xde\x72\x03\x90\xd8\x77\xec\xc2\x69\x19\x7f\x70\xb7\x83\xe6\xf6\x28\x13\xa4\xd9\x95\xaa\x9e\x5e\x71\x97\x4f\x0c\x95\x56\x3d\x05\x0c\x93\x2f\x09\x6c\xd0\x35\xbf\xea\x2a\xed\xe5\xb8\x6d\x30\xbe\xb9\x2c\x35\x7a\x7a\x7b\x12\x1f\x92\xaa\xd4\xf4\x8e\x9f\x09\x35\x57\x60\x1c\xd9\xd8\x3b\xa2\xca\x05\x9e\x8e\x1e\x16\x8e\x45\xf4\x94\x2f\xbf\xd8\xf6\xd6\xf2\x9a\xe7\x86\x45\xef\x6a\x28\x4e\x3b\xc2\xc9\xa7\xd1\x66\xd7\x33\x2d\x74\x4d\x9e\xa7\xed\xa8\xf6\x78\x8a\x8e\x68\x2a\x27\xfc\x23\x51\x92\x18\x7f\x93\x4a\xaa\x6c\x73\xe0\xd1\x66\xdc\x09\x35\x48\xdf\x31\x0a\xaa\x5d\x36\x8c\x03\x83\x4e\x9b\xfb\x0b\x00\x00\xff\xff\xf1\x7d\x42\x97\xea\x00\x00\x00") - -func vpcAdmissionWebhookCsrYamlBytes() ([]byte, error) { - return bindataRead( - _vpcAdmissionWebhookCsrYaml, - "vpc-admission-webhook-csr.yaml", - ) -} - -func vpcAdmissionWebhookCsrYaml() (*asset, error) { - bytes, err := vpcAdmissionWebhookCsrYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "vpc-admission-webhook-csr.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xf4, 0x54, 0x57, 0xf8, 0xbd, 0x8a, 0x1a, 0x67, 0xb2, 0x29, 0x18, 0xe2, 0x44, 0x8a, 0xc2, 0x7f, 0x44, 0x26, 0x4c, 0x52, 0xe0, 0x70, 0xe0, 0xc8, 0x5a, 0x74, 0x76, 0x2, 0xcd, 0x3e, 0xa}} - return a, nil -} - -var _vpcAdmissionWebhookDepYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x54\xc1\x6e\xdb\x3a\x10\xbc\xfb\x2b\xf6\x92\x97\x93\xa5\x97\xa0\xc8\x81\x40\x0a\x04\x4d\x0a\x04\x6d\x93\xa0\x29\x7a\x5f\x53\x13\x99\x10\x45\xb2\xe4\x4a\x8e\xfe\xbe\xa0\xad\xa4\xb6\x1c\x37\x39\x14\xad\x0e\x3e\xec\xec\xcc\x2c\x87\x5e\x72\x30\xdf\x11\x93\xf1\x4e\x11\x87\x90\xca\xfe\x64\xd6\x18\x57\x29\xba\x44\xb0\x7e\x68\xe1\x64\xd6\x42\xb8\x62\x61\x35\x23\x72\xdc\x42\x51\x1f\xf4\x9c\xab\xd6\xa4\xcc\x9c\xaf\xb0\x58\x7a\xdf\x8c\x68\x0a\xac\xa1\xa8\xe9\x16\x98\xa7\x21\x09\xda\x19\x91\xe5\x05\x6c\xca\x02\x94\x7d\x0e\x29\xa4\x00\x9d\x9b\x22\x82\x35\x9a\x93\xa2\x93\x19\x51\x92\xc8\x82\x7a\xd8\xd0\x65\x08\x50\xf4\x15\x3a\x82\x05\x19\x86\x85\x16\x1f\x37\x70\xcb\xa2\x97\x9f\xb7\xec\x7e\x6b\x48\x24\x68\x83\x65\xc1\xc8\xde\x3a\x6a\xfe\xec\x8e\xd0\x2b\x52\x44\x4f\xf3\xe7\x4f\x7b\x27\x6c\x1c\xe2\x16\x7d\xfe\x4a\x7e\xcf\x36\xb1\xde\x62\x6d\x98\x73\xb1\xe9\x03\xa2\x7c\x34\x16\xe7\x25\x44\x97\x23\xaf\xd4\x88\x92\xd6\xbf\x45\x58\xa7\x3d\xa5\x7d\xc2\x70\x88\xd5\x60\x78\x89\x74\x7b\xbf\x8e\xf0\x7e\x8c\xf6\xb6\x47\x8c\xa6\xc2\xf9\xca\xb8\xca\xaf\xd2\xb4\x9d\x6d\xf2\xd6\xd7\xe2\x93\x54\x88\x71\x0a\xf7\xe7\xef\x26\xa5\xd3\xf7\xff\x9d\x6c\x95\x4c\xcb\x35\x14\x1d\x1f\xa5\xa2\x6a\x62\x01\x1d\x8b\xa3\x54\x1c\xa5\x12\x4d\x2a\x5f\x0c\x4b\xf5\xff\x17\xa7\xc5\xd9\xf1\x54\xe4\xae\xb3\xf6\xce\x5b\xa3\x07\x45\x17\x76\xc5\xc3\xf6\xac\xbd\xb7\x5d\x8b\x2f\xbe\x73\xb2\x17\xef\xe6\x62\x46\xf5\xf9\x3a\x9c\x9d\x0e\xa2\x36\xf3\xee\x58\x96\x8a\xf6\x83\x9c\xf4\x46\x70\x75\xeb\xec\xa0\x48\x62\x87\x11\x5c\xfa\x24\x37\x90\x95\x8f\xcd\x4e\x9d\x1f\x1e\x8c\x33\x32\xfc\x1a\xc9\xf9\x0a\x17\x7b\xd5\x2c\xfb\xa3\x33\x11\xd5\x65\x17\x8d\xab\xef\xf5\x12\x55\x67\x8d\xab\xaf\x6b\xe7\x9f\xcb\x57\x8f\xd0\x9d\xe4\x95\xde\x19\x2a\x6b\x3e\xdd\xe7\x37\xc4\x76\x2f\x81\xf5\xe6\x5c\x3d\x86\x88\x75\xd2\x13\x3c\x77\x34\x18\x14\x2d\x20\x5c\xe4\xed\x8e\x0e\x82\x54\x18\x5f\xfa\xe9\xf1\x89\x7c\x40\xe4\xbc\x94\x74\xed\xf6\xc0\x9e\x6d\x87\x3d\xfd\xec\x60\x8d\xeb\x1e\xdf\xec\xcb\x51\x2f\xff\x94\x33\xb7\xd5\xd9\xf4\x5f\xfa\xc6\x44\xfe\x41\x18\x7f\x27\x87\xcd\xbe\xbc\xf0\x7e\x1d\x5a\x93\x94\x5f\x65\xd9\x95\xdd\xd4\x6e\x0e\xbf\x7b\xa3\xca\xcf\x00\x00\x00\xff\xff\x52\xd4\x1b\x58\x8b\x06\x00\x00") - -func vpcAdmissionWebhookDepYamlBytes() ([]byte, error) { - return bindataRead( - _vpcAdmissionWebhookDepYaml, - "vpc-admission-webhook-dep.yaml", - ) -} - -func vpcAdmissionWebhookDepYaml() (*asset, error) { - bytes, err := vpcAdmissionWebhookDepYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "vpc-admission-webhook-dep.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x48, 0x71, 0x63, 0xbb, 0x59, 0xcc, 0xd5, 0x1b, 0x30, 0xc7, 0x1c, 0x5e, 0xf2, 0x65, 0x72, 0xff, 0xa9, 0x4d, 0x14, 0x6c, 0xce, 0x49, 0xa8, 0x6f, 0x4d, 0x8e, 0x19, 0xf7, 0xee, 0xfa, 0x8c}} - return a, nil -} - -var _vpcAdmissionWebhookYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8c\x31\xae\xc2\x40\x0c\x05\xfb\x3d\x85\x2f\xe0\xe2\xeb\xa7\xf2\x29\x90\x90\xe8\x9d\xcd\x13\xac\x92\xcd\x5a\x6b\x13\xc4\xed\x51\x22\x0a\x1a\x44\x67\xf9\xcd\x0c\x33\x27\xb5\x72\x41\xf7\xd2\x56\xa1\xed\x2f\xcd\x65\x9d\x84\xce\xe8\x5b\xc9\x48\x15\xa1\x93\x86\x4a\x22\x5a\xb5\x42\x68\xb3\xcc\x3a\xd5\xe2\xbb\xc1\x0f\x8c\xb7\xd6\xe6\xf7\xea\xa6\x19\x42\xf3\x7d\x04\xfb\xd3\x03\x35\x11\x2d\x3a\x62\xf1\x3d\x40\xa4\x66\xdf\x0a\x6e\xc8\x3b\x64\xad\xc7\x41\xf3\x71\x0a\x0d\xc3\xff\xe1\x86\xf6\x2b\xe2\xf4\xf1\x73\x2c\xc8\xd1\xfa\xcf\xf6\x2b\x00\x00\xff\xff\xbc\xa7\x78\x3e\xe7\x00\x00\x00") - -func vpcAdmissionWebhookYamlBytes() ([]byte, error) { - return bindataRead( - _vpcAdmissionWebhookYaml, - "vpc-admission-webhook.yaml", - ) -} - -func vpcAdmissionWebhookYaml() (*asset, error) { - bytes, err := vpcAdmissionWebhookYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "vpc-admission-webhook.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x14, 0x3e, 0x68, 0x1c, 0x57, 0x26, 0x7e, 0x3b, 0xab, 0xf1, 0x55, 0x21, 0x61, 0xc3, 0xe1, 0xaf, 0x46, 0xb6, 0xf7, 0xdd, 0x11, 0x29, 0x41, 0x64, 0x57, 0xc8, 0xd4, 0xea, 0x97, 0xba, 0xff}} - return a, nil -} - -var _vpcResourceControllerDepYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x94\x4f\x6f\xdb\x3c\x0c\xc6\xef\xfe\x14\xbc\x14\x3d\xd9\x49\xfa\xbe\x6b\x31\x01\x3b\x14\x6b\xb1\x15\x18\x86\x00\x0d\x76\x67\x24\x26\x16\x2c\x4b\x1a\x45\x3b\xf1\x3e\xfd\xa0\xb5\xf9\xe3\xa6\x5b\x8b\x61\xc3\x7c\x32\x9e\x9f\xc4\x87\x24\x44\x96\x65\x59\x60\xb4\x5f\x88\x93\x0d\x5e\x01\xc6\x98\x26\xfd\xac\x68\xac\x37\x0a\x6e\x28\xba\x30\xb4\xe4\xa5\x68\x49\xd0\xa0\xa0\x2a\x00\x3c\xb6\xa4\xa0\x8f\xba\x64\x4a\xa1\x63\x4d\xa5\x0e\x5e\x38\x38\x47\xfc\xc8\x53\x44\x4d\x0a\x9a\x6e\x49\x65\x1a\x92\x50\x5b\xa4\x48\x3a\x5f\x67\x8a\xce\x6a\x4c\x0a\x66\x05\x40\x22\x47\x5a\x02\x67\x02\xd0\xa2\xe8\xfa\x13\x2e\xc9\xa5\x07\x01\x72\x4a\xbf\x32\xcb\x9f\x58\x62\x05\x4b\xd4\x0d\x79\xb3\xd3\x18\x75\xa3\x20\x09\x2e\x1d\x15\x00\x42\x6d\x74\x28\xf4\xe8\x73\x54\x4e\xfe\xdc\xc8\xf2\x55\xa6\xcf\xdb\x9e\x1a\x03\xec\x0a\xff\xf1\x4f\xdc\x5b\x4d\xd7\x5a\x87\xce\xcb\x4b\x1e\x59\x40\xeb\x89\xf7\xa9\x95\xa0\x43\xdb\xa2\x37\x87\x5c\x4b\x98\xbc\x94\x29\xf2\x3a\x1d\x5f\x28\x93\x18\x62\x96\x9a\x29\xd5\xc1\x99\x77\xd6\xaf\xc2\x9e\xdb\x16\xd7\xa4\xe0\xfc\x2c\x55\xa6\xe1\x8a\x34\x57\x67\xa9\x3a\x4b\x13\x6a\xd2\x64\x63\xbd\x09\x9b\x54\xfe\xc4\x52\xf5\xd3\xea\xa2\xba\x3c\x1f\x07\x9b\x77\xce\xcd\x83\xb3\x7a\x50\x70\xed\x36\x38\xa4\x3d\x77\xb6\x27\x4f\x29\xcd\x39\x2c\xe9\x90\x23\xc0\x0a\xad\xeb\x98\x16\xbb\x1c\x15\xbc\x39\xa2\xb5\x48\xfc\x40\x72\x7c\x01\xa0\x0e\x49\x14\xcc\x2e\xae\xaa\x69\x35\xad\x66\x23\x16\x51\x6a\x05\x93\x9a\xd0\x49\xfd\x6d\x8c\x02\x8b\x82\xcb\xd9\xd5\xd5\xdb\x91\x9e\x74\x4d\xf9\xa5\x7f\x5c\x2c\xe6\x47\xc0\x7a\x2b\x16\xdd\x0d\x39\x1c\xee\x49\x07\x6f\x92\x82\xff\xa6\x47\x27\x22\xb1\x0d\xe6\x79\x26\xb6\xa5\xd0\xc9\x1e\x1e\x8a\x7a\x69\xac\x76\x0f\x48\x77\x6c\x65\x78\x1f\xbc\xd0\x76\xd4\x80\xc8\xb6\xb7\x8e\xd6\x64\x14\x08\x77\x54\x1c\xba\xf2\x99\x64\x13\xb8\x19\xe9\xb8\x5a\xe5\x52\x86\x43\x08\x1f\x0c\x5d\x9f\xa8\x79\x62\xbf\x76\x96\xc9\xdc\x74\x6c\xfd\xfa\x5e\xd7\x64\x3a\x67\xfd\xfa\x6e\xed\xc3\x5e\xbe\xdd\x92\xee\x24\x6f\x91\x51\x13\x73\xcc\xfb\xc7\x19\x5f\x10\xb7\x69\x8c\xcb\x87\x91\xbf\xdd\x46\xa6\x94\x77\xd0\x13\x9e\x4f\x34\x34\x28\x58\x92\x60\x95\xd7\x09\x7b\x12\x4a\x95\x0d\x93\x90\x9e\x1c\x05\x08\x91\x18\xf3\x36\x81\x3b\x7f\x02\x7b\x74\x1d\x9d\xc4\xcf\x0e\xce\xfa\x6e\xfb\x6a\x5f\x64\x5d\xff\x29\x67\x6c\xcd\xe5\xff\xbf\xd7\x91\x7f\xd0\x8c\xbf\xdd\x87\xef\x01\x00\x00\xff\xff\xec\x16\x91\xef\x8f\x06\x00\x00") - -func vpcResourceControllerDepYamlBytes() ([]byte, error) { - return bindataRead( - _vpcResourceControllerDepYaml, - "vpc-resource-controller-dep.yaml", - ) -} - -func vpcResourceControllerDepYaml() (*asset, error) { - bytes, err := vpcResourceControllerDepYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "vpc-resource-controller-dep.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0xbf, 0x11, 0xf3, 0x5f, 0x76, 0xa3, 0xb2, 0x2e, 0x2f, 0x80, 0xa7, 0x86, 0xae, 0x3f, 0xb7, 0x7e, 0x76, 0xed, 0x68, 0xfe, 0x23, 0x5c, 0x76, 0xb9, 0xd0, 0xd8, 0xed, 0xf9, 0x9d, 0x96, 0x93}} - return a, nil -} - -var _vpcResourceControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x90\x31\x4f\x33\x31\x0c\x86\xf7\xfc\x8a\xa8\x7b\x5a\x7d\xdb\xa7\xdb\x80\x81\xbd\x48\xec\x3e\x9f\xdb\x9a\xe6\xe2\xc8\x76\x0e\xc1\xaf\x47\x77\xd7\xc2\x80\x44\x85\x98\xf2\xc4\xf6\x6b\x4b\x4f\x4a\x29\x40\xe5\x67\x52\x63\x29\x5d\xd4\x1e\x70\x0b\xcd\x4f\xa2\xfc\x0e\xce\x52\xb6\xe7\xff\xb6\x65\xd9\x4d\xff\xc2\x99\xcb\xd0\xc5\x87\xdc\xcc\x49\xf7\x92\x29\x8c\xe4\x30\x80\x43\x17\x62\x2c\x30\x52\x17\xa7\x8a\x49\xc9\xa4\x29\x52\x42\x29\xae\x92\x33\x69\xd0\x96\xc9\xba\x90\x22\x54\x7e\x54\x69\xd5\xe6\x4c\x8a\x9b\x4d\x88\xf1\x1a\xb8\xd4\x8a\x0c\x64\x5f\xb4\x33\x07\x6f\x6b\xa1\xca\xb0\x02\x4a\x39\xf0\x71\x84\x3a\x7f\x27\xd2\xfe\x92\x6d\x75\x00\xa7\x05\x8f\xe4\xcb\x9b\xd9\x56\x78\x05\xc7\xd3\xba\xe6\x93\x50\x69\x9e\xff\x9b\x87\x7b\x2e\x03\x97\xe3\x6f\x74\x48\xa6\x3d\x1d\xe6\xc1\xab\x90\x1f\x8e\x86\x18\xbf\xbb\xbf\x75\xc2\x5a\xff\x42\xe8\x8b\xf4\x35\xfd\x44\x3a\x31\xd2\x1d\xa2\xb4\xe2\x37\x17\xac\x7d\xab\x80\xd4\xc5\x73\xeb\x29\xd9\x9b\x39\x8d\xe1\x23\x00\x00\xff\xff\x83\x2e\x8d\x64\x35\x02\x00\x00") - -func vpcResourceControllerYamlBytes() ([]byte, error) { - return bindataRead( - _vpcResourceControllerYaml, - "vpc-resource-controller.yaml", - ) -} - -func vpcResourceControllerYaml() (*asset, error) { - bytes, err := vpcResourceControllerYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "vpc-resource-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa8, 0xff, 0xd2, 0xc, 0x46, 0xfb, 0xe4, 0x4e, 0xb, 0x26, 0x4a, 0xa0, 0x7d, 0x73, 0x5e, 0xaf, 0x6d, 0xab, 0xfd, 0xe5, 0xc2, 0x4f, 0xed, 0xae, 0xb6, 0xd7, 0x17, 0x38, 0x68, 0xb0, 0xe8, 0x2d}} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// AssetString returns the asset contents as a string (instead of a []byte). -func AssetString(name string) (string, error) { - data, err := Asset(name) - return string(data), err -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// MustAssetString is like AssetString but panics when Asset would return an -// error. It simplifies safe initialization of global variables. -func MustAssetString(name string) string { - return string(MustAsset(name)) -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetDigest returns the digest of the file with the given name. It returns an -// error if the asset could not be found or the digest could not be loaded. -func AssetDigest(name string) ([sha256.Size]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s can't read by error: %v", name, err) - } - return a.digest, nil - } - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s not found", name) -} - -// Digests returns a map of all known files and their checksums. -func Digests() (map[string][sha256.Size]byte, error) { - mp := make(map[string][sha256.Size]byte, len(_bindata)) - for name := range _bindata { - a, err := _bindata[name]() - if err != nil { - return nil, err - } - mp[name] = a.digest - } - return mp, nil -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "efa-device-plugin.yaml": efaDevicePluginYaml, - "neuron-device-plugin.yaml": neuronDevicePluginYaml, - "nvidia-device-plugin.yaml": nvidiaDevicePluginYaml, - "vpc-admission-webhook-config.yaml": vpcAdmissionWebhookConfigYaml, - "vpc-admission-webhook-csr.yaml": vpcAdmissionWebhookCsrYaml, - "vpc-admission-webhook-dep.yaml": vpcAdmissionWebhookDepYaml, - "vpc-admission-webhook.yaml": vpcAdmissionWebhookYaml, - "vpc-resource-controller-dep.yaml": vpcResourceControllerDepYaml, - "vpc-resource-controller.yaml": vpcResourceControllerYaml, -} - -// AssetDebug is true if the assets were built with the debug flag enabled. -const AssetDebug = false - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"}, -// AssetDir("data/img") would return []string{"a.png", "b.png"}, -// AssetDir("foo.txt") and AssetDir("notexist") would return an error, and -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - canonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(canonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} - -var _bintree = &bintree{nil, map[string]*bintree{ - "efa-device-plugin.yaml": {efaDevicePluginYaml, map[string]*bintree{}}, - "neuron-device-plugin.yaml": {neuronDevicePluginYaml, map[string]*bintree{}}, - "nvidia-device-plugin.yaml": {nvidiaDevicePluginYaml, map[string]*bintree{}}, - "vpc-admission-webhook-config.yaml": {vpcAdmissionWebhookConfigYaml, map[string]*bintree{}}, - "vpc-admission-webhook-csr.yaml": {vpcAdmissionWebhookCsrYaml, map[string]*bintree{}}, - "vpc-admission-webhook-dep.yaml": {vpcAdmissionWebhookDepYaml, map[string]*bintree{}}, - "vpc-admission-webhook.yaml": {vpcAdmissionWebhookYaml, map[string]*bintree{}}, - "vpc-resource-controller-dep.yaml": {vpcResourceControllerDepYaml, map[string]*bintree{}}, - "vpc-resource-controller.yaml": {vpcResourceControllerYaml, map[string]*bintree{}}, -}} - -// RestoreAsset restores an asset under the given directory. -func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - return os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) -} - -// RestoreAssets restores an asset under the given directory recursively. -func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil -} - -func _filePath(dir, name string) string { - canonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(canonicalName, "/")...)...) -} diff --git a/pkg/addons/default/assets.go b/pkg/addons/default/assets.go deleted file mode 100644 index 7655c06350..0000000000 --- a/pkg/addons/default/assets.go +++ /dev/null @@ -1,389 +0,0 @@ -// Code generated by go-bindata. DO NOT EDIT. -// sources: -// assets/aws-node.yaml (7.015kB) -// assets/coredns-1.17.json (10.228kB) -// assets/coredns-1.18.json (10.212kB) -// assets/coredns-1.19.json (10.163kB) -// assets/coredns-1.20.json (10.393kB) -// assets/coredns-1.21.json (10.486kB) - -package defaultaddons - -import ( - "bytes" - "compress/gzip" - "crypto/sha256" - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo - digest [sha256.Size]byte -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -func (fi bindataFileInfo) Name() string { - return fi.name -} -func (fi bindataFileInfo) Size() int64 { - return fi.size -} -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} -func (fi bindataFileInfo) IsDir() bool { - return false -} -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _awsNodeYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\xdf\x8f\xe2\x38\x12\x7e\xe7\xaf\x68\x59\xba\x97\x93\x12\xe8\xd9\x99\xb9\xde\x96\xf6\x81\x81\x34\x17\x2d\x04\x14\xa0\x67\xf7\x5e\x22\xe3\x54\x07\x1f\x8e\x9d\xb5\x1d\x9a\xde\xd3\xfd\xef\x27\x9b\x04\x12\x48\x80\x9e\xdb\xbb\x91\x4e\xf7\xd4\x8d\x5d\xf5\x7d\xe5\x2f\x55\xe5\x1f\x8e\xe3\x74\x10\xce\xe8\x33\x48\x45\x05\x47\x8f\x77\x68\x7b\x8f\x3a\x68\x43\x79\x6c\x7e\xcc\x41\x6e\x29\x81\x3e\x21\x22\xe7\x1a\x75\x50\x0a\x1a\xc7\x58\x63\xf4\xd8\xb9\xbb\x43\x1c\xa7\x60\xcc\xf0\xab\x72\xb8\x88\x01\x95\x83\x2a\xc3\xc4\xce\x6c\xf2\x15\x38\xea\x4d\x69\x48\x51\xa7\x81\x4d\xae\x30\x71\x71\xae\xd7\x42\xd2\xdf\xb1\xa6\x82\xbb\x9b\x07\xe5\x52\xd1\xad\xc5\x31\x60\xb9\xd2\x20\x43\xc1\xe0\x0b\xe5\x31\xe5\xc9\x0d\xb1\x20\x29\x18\x84\xf0\xb2\x9f\xc7\x19\x1d\x49\x91\x67\x17\x59\xed\x02\x1a\x48\x51\x0b\x83\xca\x57\x7f\x07\xa2\x15\x7a\xec\x38\x77\xad\xaa\x7d\x27\xa5\x6e\x92\x28\x67\x50\x44\x5f\x0a\xa4\xac\xb1\x73\x87\x88\x8c\x2d\x05\x4e\xf1\xef\x82\xe3\x57\xe5\x12\x91\xda\xc0\x25\x28\x91\x4b\x02\x07\x53\xe0\x94\x08\xfe\x42\x13\x65\xe7\xb7\x20\x57\x87\xb9\x04\xac\x04\xce\x1d\x62\x54\x95\xff\xbe\x62\x4d\xd6\xa8\x91\xb6\x99\xe1\xa0\x55\x03\xc3\x39\xee\x91\xf8\x76\x86\x4c\xc4\xff\x31\x6c\xa3\xf6\x3b\xc1\xed\x7f\x79\x16\x63\x0d\xcd\x4c\xb0\xd3\xc0\x4d\x76\xa8\x66\xce\x3f\xdf\xc2\xd7\x90\x68\x38\xa3\x47\xe8\x63\x8e\xad\x40\xe3\x5a\xa2\xe5\x4a\x8b\x34\x2c\x58\x87\xf0\x42\x39\x35\x59\xd9\x9a\x75\xc7\x1c\x71\x5b\x32\x0b\xa9\x0c\xc8\xde\x29\x29\x4b\xb5\x3d\x09\x6d\x46\x58\xeb\x4a\xcd\x7a\x81\x3f\xb0\x24\x68\x3f\x9e\xb1\x5c\x62\x56\xa7\x2f\xa6\x14\xe5\x49\xce\xb0\xac\x4d\x5a\x64\x45\x44\x06\x95\x62\x2a\x85\xdc\x8b\x5d\x49\xc8\x7d\xbf\xc4\x2c\x5b\x1b\x69\xf6\xa8\x20\xb7\x60\x42\xd1\x32\x87\x62\x48\x0b\x89\x13\x28\xc7\x1a\x25\xcf\x54\xbd\x8c\x87\x18\x52\xc1\xe7\x70\xde\x73\x19\x5e\x01\x3b\xae\xfb\x41\x39\x38\xcb\x1a\x5b\xcb\x3b\xfa\x4d\x45\x79\x05\x0c\x88\x16\xb2\x64\x48\x4d\xa2\x8c\xab\xa4\x17\x68\x35\xa4\x19\x33\x19\x5b\x3a\x57\x43\xb7\x23\xac\x8e\xd4\x8e\x65\x42\x29\x83\xb2\xbf\xf0\x8b\x4d\xb1\xb7\xaa\xaf\x31\xee\x9f\x8f\xdb\x72\xf8\x2d\xa7\x12\xe2\x61\x2e\x29\x4f\xe6\x64\x0d\x71\xce\x28\x4f\xfc\x84\x8b\xc3\xb0\xb7\x03\x92\xdb\xa4\xad\xfa\x16\xb8\xf3\x42\x88\x05\xc8\x54\x9d\x18\x38\x85\x2e\xde\x2e\x93\xa0\x8e\x79\x71\x62\xb3\x81\x37\xb3\x2c\x53\x3a\xae\xd1\x5b\x72\xd0\x60\xeb\x49\x14\x59\x58\x63\x15\x19\x48\x6c\xa5\xbf\x43\x3e\x6f\x30\xd8\x62\x96\xc3\x39\x53\x51\xdb\x3c\xdf\x9d\xfa\x5c\x8c\x01\xcb\x7d\xc7\xf9\x23\xa3\xc0\x69\xfc\xf9\xe3\xb9\x8f\x99\x91\xe9\xf9\xcc\x31\x3e\xd8\x9c\xd4\x78\x97\x88\x34\xcb\x35\x38\xfa\x2d\x83\x2b\x61\x06\x42\xbf\x3b\xd2\x17\x2c\x13\xdb\x5b\x4f\xc6\xdf\xf1\x5d\xbf\xf3\x27\xfd\xff\xd7\x3c\xf2\x9e\x7c\x4d\x44\x04\xd7\x98\x72\x90\x47\x7b\x7b\x4c\xd9\x56\xdc\x2b\x4d\xbc\x3f\x1c\xfa\x0b\x7f\x1a\xf4\xc7\x91\x17\xf8\xd1\xa2\x3f\x9a\x57\x03\xd8\x53\x1b\xc3\x7f\xfc\x13\x35\xfa\x7f\x9d\x47\xcf\xb3\x41\x34\x08\xfc\x28\x98\x0e\xbd\x68\x36\x0d\x17\xd1\x7c\x39\x33\x7f\x9b\x91\xcc\x5e\x70\x11\xcb\x04\x32\x59\x2c\x9b\xbd\x7f\xec\xf5\xee\x2f\x7a\xff\xfc\x30\xb7\xd1\x0c\xa6\xc1\x93\x3f\x5a\x86\x5e\x14\xce\x9e\xfc\xf1\xc2\x0b\x9b\x01\x5f\x30\x53\x97\xe3\x39\x20\x2e\xe7\x8b\xe9\x24\x0a\xbc\xc5\xd7\x69\xf8\x73\x34\x78\x1a\xfd\xbb\x88\xde\x2f\x0b\x2f\x0c\xfa\xe3\x79\xd0\x6f\x11\xeb\x76\xac\xf1\x74\x34\xf6\x9e\xbd\x71\x33\xce\xd0\xfb\xb2\x1c\xdd\x8a\x13\x3d\xf9\x63\xaf\x19\xa7\xbb\x16\x4a\x77\xb7\x58\x76\x99\x48\xba\x66\xdb\x92\x22\xd7\x10\x3b\xc0\x69\x97\x66\x38\x8d\x5d\x26\x92\x9b\x88\xc2\x7e\x30\x9c\x4e\xfc\xbf\x79\xed\xab\xcf\x24\xbf\x0d\xeb\xd9\x5b\xfc\x75\x16\x7a\x4f\xfe\x2f\xcd\x40\xc0\xe9\x55\x9c\xd9\x78\x39\xf2\x83\x6b\xeb\x6f\x59\x7a\xc6\xf2\x84\xf2\x9b\xd6\x5e\xe1\xf9\xa6\x0f\x36\xf4\xe7\xfd\x2f\x63\x2f\xf2\x83\x45\x38\x9d\xcf\xbc\x81\xa9\xdf\xf7\x66\x4f\x09\x32\xf1\x16\xa1\x3f\x68\xa9\xf9\xeb\xee\x65\x2d\x84\xde\x7c\xba\x0c\x07\x5e\x34\x0b\xa7\xcf\xfe\xdc\x9f\x06\x7e\xf0\xee\xea\xf0\x02\x8b\x39\x9b\x0e\x4d\x0b\xf8\x56\x6f\x9b\x05\xd1\xd0\x1b\x7b\xa3\xfe\xb7\x28\x33\xf9\x75\xdf\xc8\x82\xfe\xa4\x21\x07\x9e\xa4\x48\x4f\xcf\x4c\x2f\x14\x58\x5c\x5e\xb7\xcf\x67\x66\x58\xaf\x0d\xb0\x39\xd4\xb9\xe6\x7c\x15\x18\xa6\x26\xea\xaf\xfd\x70\x52\xb4\xe1\x70\xe4\xb5\xd4\x44\x73\xf7\xb3\xae\xc5\xda\x6f\xf4\x46\x34\xdd\x1f\xce\xd1\xe7\xde\x87\x8f\xbd\xfb\xfb\x8f\x3f\x7c\xfc\xf4\xc1\x8d\x37\xd2\x05\x22\xdd\x5c\x39\xaf\xa0\xb4\xf3\xe1\x64\x3f\xdb\xff\x72\xcc\xe1\x95\x70\xfa\xb8\xbd\x77\x7f\x74\x7f\xa8\xa0\x32\xba\x05\x0e\x4a\xcd\xa4\x58\x41\xfd\x68\x0a\xbb\xca\xb1\xb6\x18\x23\x22\x4d\xb1\x39\xfa\x9f\x1e\x47\xba\x38\xcb\xba\x89\xcc\x88\xb3\x06\xcc\xf4\xda\xc9\x2c\xe0\xa9\x99\x83\xe3\x58\xfe\xf4\xf8\xa9\xd7\xfb\x74\x7f\x3e\x49\x04\xe7\x40\xb4\xa3\x69\x0a\x22\xd7\x3f\x7d\x50\xe7\x36\x86\xa2\x79\x1e\xd9\x9b\x1d\x66\x43\x60\xf8\x6d\x0e\x44\xf0\x58\xa1\xc7\xbb\xcf\xbd\xaa\x4d\xe1\x7a\x9c\xfe\x54\x39\xa5\x37\x5c\x46\x8a\xa9\x4c\x48\xad\xea\x7b\xf2\x61\xeb\x9e\x09\xa9\x0d\xcf\xfd\xe7\xbf\x3c\x54\xa9\x4a\xb8\x14\xb4\xa4\xa4\x12\x2a\x92\x80\x63\xfa\xbf\xad\xfa\x7d\x75\xb5\xd5\x1b\x7f\x65\xf8\xb7\x1c\x94\x3e\x3d\x28\x21\x92\xe5\x36\xf5\x7b\x69\x45\x31\x05\x24\x97\x54\xbf\x0d\x04\xd7\xb0\xd3\x75\x24\x82\x33\xbc\xa2\x8c\x6a\x7a\x76\xec\x42\x38\x6e\x90\x2d\xf0\x16\x51\x7f\x38\xf1\x2b\xdd\x06\x6d\x05\xcb\x53\x98\x88\x9c\x9f\x7e\xe8\xd4\x8c\x95\x6d\x61\xbf\xa3\x8a\x4c\x77\x09\xa7\xdd\x15\xad\x1d\x00\x0f\x9f\x9c\x70\xea\xac\x28\x77\x62\x2a\xd1\x15\x28\xd0\xc4\x42\x71\xd0\x6e\xdc\x0a\xc6\x41\xdf\x02\xd6\xbc\xdd\x35\xa2\x32\x91\x5c\x41\x34\x60\x32\xe7\xdd\xf3\x72\xa8\xc0\xc8\xfc\xda\x2a\x4b\x98\x58\x90\x0d\x48\xb5\xa6\xa9\xab\x04\xd9\x34\xa2\x1d\x6d\x2e\x00\x1a\xb0\x9d\xc6\x2b\x06\xca\x65\x6d\x48\x85\x81\x53\x35\x40\x46\xa3\x00\xf4\xab\x90\x9b\xea\xcb\x47\x91\xc4\x83\xf7\x9d\xc5\xcb\x4d\x75\x31\x98\x45\x5e\x3f\x1c\xff\x1a\x0d\xbd\xc9\xb2\xe5\x44\x73\xb2\x81\xfd\x21\xcd\xdc\x31\x41\x9f\x77\xf4\x6a\x17\xdb\x66\xe4\x60\x79\x6b\x35\x65\x92\x6e\x29\x83\xa4\xfe\x3a\xf4\x5f\xa9\x11\xc3\x2d\x6c\x60\x0c\x2b\x15\x14\x86\xfb\xc7\x1f\x9b\x82\x0e\x91\x54\x53\x82\xd9\xc1\x43\xd5\xde\xb0\x83\x96\x0e\x8e\x34\xc8\x94\x72\xfb\x1c\x3d\x92\x98\xc0\x0c\x24\x15\x71\xa5\x5d\xf5\x0e\x96\x82\x99\x2b\x5e\xed\x4a\xed\xd4\x2f\x7e\xde\x8e\x9a\xbe\xd5\xa9\xa9\x52\xb3\x36\x02\xec\xd5\xa8\x29\x5b\xea\xd3\x28\xcd\x25\x61\xae\x43\xb6\xb4\x91\x4b\x4d\xe4\x3a\xe8\xd5\xd2\xbd\x50\xb8\xd7\xd1\xdb\xeb\xf8\x62\x15\xdf\x16\xf6\x95\x2e\x68\xaf\xf7\xa6\x88\xa9\xb4\x8f\x67\x6f\x53\x39\x90\x50\x7b\x67\x69\xeb\x94\xb7\xcb\xd6\xd8\x38\xdf\xc3\x5c\x69\xae\xc5\x13\xfb\x5c\x4b\xac\x21\x29\x1f\x11\x91\x14\x8c\x51\x9e\x2c\xf7\xef\xef\x87\x37\xc8\x14\xef\x96\x1c\x6f\x31\x65\x46\xbf\xfd\x76\xfa\xa7\xe2\xb5\xb2\x0c\x20\xac\xb9\x76\x5c\xd7\xed\xfc\x2b\x00\x00\xff\xff\x52\x34\x51\xce\x67\x1b\x00\x00") - -func awsNodeYamlBytes() ([]byte, error) { - return bindataRead( - _awsNodeYaml, - "aws-node.yaml", - ) -} - -func awsNodeYaml() (*asset, error) { - bytes, err := awsNodeYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "aws-node.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x85, 0xa8, 0x9e, 0xb6, 0x21, 0xf, 0x46, 0x9a, 0x6f, 0x36, 0xe9, 0xb2, 0x10, 0xc9, 0x3d, 0x4e, 0x97, 0xf5, 0xf5, 0x23, 0xb7, 0x14, 0x6e, 0x77, 0x70, 0xd4, 0x7b, 0xe, 0x62, 0xbe, 0x50}} - return a, nil -} - -var _coredns117Json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5f\x73\x1b\xb9\x0d\x7f\xf7\xa7\xd8\xd9\x99\xbc\x9d\x64\x29\x8e\xdd\x9c\xdf\x7c\xb6\x9b\xf3\x34\x76\x35\xb6\x73\x2f\xcd\xcd\x0d\xc5\x85\x24\x56\x5c\x82\x05\xb9\xb2\x75\x19\x7f\xf7\x0e\xf7\x8f\xb4\x7f\xc8\x95\xe4\x3a\x9d\x74\xa6\x7a\x48\xd6\x24\x00\x62\x01\xfc\x40\x80\xdc\x6f\x47\x51\x14\x33\x2d\x7e\x03\x32\x02\x55\x7c\x1e\xc5\xab\x71\xfc\x93\x1b\x15\x16\x52\x13\x9f\x47\xff\x38\x8a\xa2\x28\xfa\x96\xff\x1b\x22\xce\x67\x96\x42\x25\x6e\xec\x01\x68\x25\x38\x6c\x27\x52\xb0\x2c\x61\x96\xc5\xe7\x1b\x31\x4e\x90\x52\x68\x99\x15\xa8\x4c\x63\x22\x8a\x62\x4d\x98\x82\x5d\x40\x66\x86\x02\x8f\x35\x92\x75\x72\x7f\x1e\x9f\x9e\x6c\x84\x7a\xe8\x0c\x27\xa6\xc1\x51\x5a\xca\x20\xde\x10\xbe\x6c\x79\x62\xc9\xa6\x20\x3b\xeb\xc1\xd2\x0c\x59\xca\xfe\x44\xc5\x9e\xcc\x90\x63\x7a\xcc\x31\xd5\xa8\x40\xe5\x0b\x2f\xb3\x29\x0c\x12\x65\x9a\x8b\x2f\x3f\x9a\x01\xd3\xba\x87\x20\x9b\x02\x29\xb0\x90\x6b\xc7\x65\x66\x2c\xd0\xc0\x94\xd6\xa9\xd4\xec\x61\x51\x2c\xcd\xe9\x2e\x91\xe0\xea\xee\xc1\xff\x46\x15\x91\x47\x87\x7c\xce\x68\xc6\xb7\x04\x66\x6d\x2c\xa4\x95\xa4\x8d\x9c\xd8\x68\xe0\x4d\xf7\x38\xab\x6f\xdd\x5f\xfc\xea\x46\xab\x2d\xdd\x7e\xf3\x92\x3b\x3e\x8f\x4e\x4f\xda\xe3\x84\x16\x39\x4a\xc7\xf6\xe5\x6a\xd2\x66\xb3\x8c\xe6\x60\x27\x15\x73\x6d\xf2\xe5\xa7\xbd\xf4\x18\x58\xae\x5f\xa3\xcb\xe3\xe5\x21\xba\x6c\x9e\x7f\xaf\x19\xdb\x80\x04\x6e\x91\xda\xc1\xe5\x8b\x13\xaf\x27\x0d\x18\x07\xab\x8b\xd9\x4c\x28\x61\xd7\x8e\xe1\x0e\x55\x3d\x42\x62\xbb\x2e\x02\xfc\xb2\x08\xa6\x9b\xc9\xc6\x93\x47\x35\x69\x87\x63\xf5\x82\x73\xcc\x94\x3d\x10\xb2\xff\x31\xb0\x38\x12\xec\x85\xab\xde\xc8\xef\x4a\xd9\x1d\xf8\x07\x9a\xab\x6b\x0a\x87\xc9\x99\x90\xf9\x02\xc3\xf3\xd3\x93\xe8\xdb\x57\xe5\x26\x80\x08\xc9\x14\xcf\x0b\x60\xd2\x2e\x8a\xe7\x2d\xb2\xa3\x32\x13\x0c\x25\x72\x26\x23\xa1\x06\x2c\x49\x68\xc8\x48\xb3\x48\xe8\xb3\xe2\xa1\x94\x16\x45\x1a\x13\x13\x09\x65\x80\x67\x04\xd5\x60\xa6\x8d\x25\x60\x69\xf5\xf7\x8c\x49\x69\x17\x84\xd9\x7c\xe1\x97\x57\x10\xbe\x14\xff\x6d\xb3\x66\x74\xee\x72\x6a\x31\x3a\x43\x7a\x62\x94\x44\xc3\xe8\x18\x2c\x3f\x26\x30\x28\x57\x43\x8e\x6a\x56\xcc\x73\xc6\x17\x10\x9d\x8c\x8a\xbf\x24\xa2\x2e\x9e\x08\x24\xb2\xa4\x1a\x65\xc9\x94\x49\xa6\x38\x7c\x55\x2f\x5f\x55\x37\xcf\x54\x71\x77\x89\x6a\x26\xe6\xb7\x4c\xff\x3f\xe4\x6a\x21\xc7\xb4\x36\xc7\x3e\x98\x5e\x81\x96\xb8\x4e\xe1\x07\x86\xe8\x5b\xed\x63\xaf\x31\x6d\xdf\x36\x46\x38\x27\x30\xe6\x0a\x58\x22\x85\x82\x07\xe0\xa8\x12\x67\x85\xb3\xd1\xa8\xb6\x06\x81\x96\x82\x33\x37\xf1\xbe\x31\xbc\x12\xce\x3b\xbf\x0a\x63\x91\xd6\x9f\x45\x2a\x9c\x59\xc6\xa3\x3d\x12\x7f\xca\x2c\x5f\x7c\xf6\x19\xfd\x75\x66\xdf\x15\xa8\xf5\x8d\xa9\xb1\xaf\x58\x62\x16\xe6\xeb\xb6\x7e\x84\x52\x0a\x35\xff\xa2\x13\x66\xa1\xab\x61\xca\x9e\x1f\x32\x9a\xe7\x46\x7f\x7f\xfa\xae\xad\x4a\xca\x9e\xbf\x28\xb6\x62\x42\xb2\x69\x9e\x06\xc7\xa1\xdd\x7a\xb3\x6b\xdd\x37\x16\xf4\xea\x6a\x21\xd5\xb2\xab\x8e\x3f\xd8\xa3\xfe\x32\xb2\xc7\xce\x99\x85\x41\xa5\x15\xf0\xf7\x71\x83\xeb\xa5\xf5\xa6\x9c\x20\x97\xff\x28\x52\x30\x96\xa5\xce\xfc\x2a\x93\xb2\x45\xe6\x85\x57\x8f\x0e\x3b\x7c\xbd\xdb\xdb\x75\x7f\xb7\x4d\xde\x01\x42\x61\xab\x6d\x69\xd1\x51\x52\x61\x02\x17\xe1\xf9\x1c\x0b\xff\xca\x04\x41\x72\x95\x91\x50\xf3\x07\xbe\x80\x24\x73\xfe\xbc\x99\x2b\xdc\x0c\x5f\x3f\x03\xcf\x6c\x91\xcf\xba\x32\xca\x75\x1e\x4a\xc4\x3c\x02\xa5\xed\x1a\x73\xfb\xf3\xb1\x47\x1b\x60\x5d\x3f\x6b\x2a\x0a\xa6\xb0\x84\x3e\x29\xb9\xa4\x25\xe4\x65\xd6\x14\x2c\x1b\x36\x73\x16\x76\xfd\xd1\xe0\x44\x0d\xc4\x0a\xd0\xc7\x37\xaa\x9f\x76\xc5\x64\x06\xfd\x5a\xe6\x74\x52\xa8\xec\x39\xee\xa1\xf9\x3d\x38\xf7\x12\x56\xe0\x95\x06\x60\xc4\x17\xff\x7d\x13\xb0\x34\x39\xfb\xd0\x2b\xca\x11\x51\x7a\xf6\xe1\x95\x76\x0a\xcc\xf8\x39\x7c\xd4\x5d\xca\x36\x55\xc7\x17\xb1\xc6\xe4\x42\x59\xd1\x0f\x2f\x4d\x30\x03\x3a\x04\x5f\x3e\x5b\xfa\xbd\x9d\x6b\x50\xae\xee\x40\x17\x00\x67\xb4\xc9\x63\x0f\xfe\x3d\xad\x45\x7a\x10\x10\xfb\x23\x71\x1b\x8b\x55\xd6\xdb\x11\x04\x07\x44\xdf\xfe\xf1\x17\x85\x32\x6d\xfb\x17\x8e\xb0\x70\x8c\x85\xb9\x82\xe8\x8d\x2d\x6a\x94\x38\x5f\xff\xad\xb4\x4d\x03\xa2\x0b\x34\x36\x2f\x9b\xfc\xc1\xeb\x17\x1a\x3f\x81\x98\x2f\x8a\x22\x66\xe4\xa1\xe8\x6a\xdf\xd6\xfa\xa5\x7f\xb7\x44\x65\x99\x50\x40\x3e\x6b\x7b\xc2\x9e\xd1\x3c\xe4\x97\x78\xe0\xda\x0f\xaf\x6b\xe3\xbc\x49\x29\x77\xce\xe3\x4d\x33\xd6\xd5\xbd\xcb\x1c\x8b\x94\x15\x55\xcd\x3b\x33\x4c\x96\x34\x04\x4e\xc3\x77\x66\xf8\xce\x1c\xc3\xd2\x54\x32\xcf\x57\xe3\xe1\xd9\xf0\x6c\x00\x4b\x33\xcd\x84\x4c\x86\x63\x8f\x1e\x85\xa8\x49\x26\xe5\x04\xa5\xe0\xb9\x8b\x6e\x66\x77\x68\x27\x04\xa6\x5e\xac\xd7\x58\xa4\x58\x81\x02\x63\x26\x84\xd3\x6e\xd5\x55\x12\xcd\x98\x90\x19\xc1\xe3\x82\xc0\x2c\x50\xba\x1e\xe0\xd4\x6b\x86\x85\xb5\xfa\x13\xd8\x20\x4c\x63\xcd\xec\xc2\xa9\x75\x5c\x34\xa3\x01\x9c\x54\x67\x24\x1f\x47\x1f\x47\x01\x0a\xc3\x17\x50\x54\xe8\xbf\x3e\x3e\x4e\x7c\x21\xe7\x0d\xb8\xd8\xe5\x1c\xc1\xe4\x15\x48\xb6\xae\x17\xdf\x5e\x62\x0d\x24\x30\xd9\x92\x8d\xfd\x64\x26\xe3\x1c\x8c\xa9\x9b\x67\xec\x25\xb4\x22\x05\xcc\xec\x56\xe0\x69\x37\x7b\x7b\x7c\x14\xee\x45\xb6\x9a\x7a\x8e\xc7\xaa\x5f\xc0\x15\x1b\x64\x4c\xfc\x07\x52\x9d\xe5\xfd\x4b\x47\xbe\x73\xb4\x7d\xdd\xf1\x86\xaa\x79\x8e\xda\xbc\xea\x3d\x5e\xbe\xb9\x7a\x3f\x8f\x77\x2a\x98\x82\x25\xc1\xf7\xb2\x5f\x48\xc1\xbd\x92\x09\x01\x4b\xc4\x6b\xf0\xec\x7d\x81\xff\x01\x3c\x7f\x77\x88\x8e\xf7\x82\x28\x81\xc1\x8c\x38\xf8\x1a\xae\xa8\xc8\xb3\xa9\xb0\xa1\xd9\xbc\xa3\x4c\x91\xf2\x8c\x3d\xfe\xcb\xe8\x56\xec\x6f\x00\xd7\x06\x81\xe9\x13\xcd\x75\x96\xcb\x1d\x8d\xd2\x90\x7f\xb6\xab\x07\x17\xdf\xcb\x0c\xf9\xb9\xa0\xb0\xeb\x4b\x54\x16\x9e\x43\x71\x13\x33\x29\xf1\x69\x42\x62\x25\x24\xcc\xe1\xda\x70\x26\x59\x59\x44\xce\x98\x34\xe0\x7d\x51\xce\x34\x9b\x0a\x29\xac\x08\x5a\xd9\x89\x4e\x92\x9e\xb2\x2a\xbe\xbb\x7e\xfc\xe3\x97\x9b\xbb\xab\x3f\x1e\xae\xef\x7f\xbb\xb9\xbc\xf6\xd7\x2a\x1e\x64\xe5\xdc\x09\xa1\xee\x93\xce\xa4\x0c\x08\x3c\xc0\x9d\x2c\xf9\xbb\x92\xeb\x7b\x44\xfb\x57\x21\xa1\x3c\x5a\x3a\x8f\x2c\x65\xb0\x97\x0f\x2c\x50\x2a\x54\x6e\xcf\x5b\x30\xc6\x55\x04\x15\x48\x13\x58\x1d\xd7\xa6\x07\x12\xe7\xbe\xcd\xc4\x23\x61\x53\x4f\x38\x9d\x7c\x3c\x2b\x94\x59\x0a\xb7\x98\xa9\x43\xf7\xa1\xd4\xf1\x6c\x54\xac\xd5\x51\xa1\x60\xdd\x6e\x87\x6a\x26\xe6\x83\x62\xe5\x10\x71\x65\xcf\x90\x05\x0f\xcb\xfc\x4d\x5d\x6d\x1a\xdc\x71\x2a\x1d\x1d\xc9\x1b\x54\xb5\xad\x80\x74\xfb\xdd\xd6\x25\x57\x30\x63\x99\x6c\x57\x77\xb1\x26\x81\x39\x16\x25\x33\xe6\xae\xd4\xa7\x08\xa7\x41\x75\xfb\xc7\x49\x58\xc1\x99\x6c\xf3\x12\x18\xcb\xc8\x6e\xd7\xb8\x90\x4f\x6c\xdd\x39\xff\x33\x45\x53\x08\x54\x89\x4f\x0a\x55\x06\x9b\x89\x0e\x47\x37\x41\xb4\x2b\x76\xd3\xbc\x03\x0a\x9f\x3e\x36\x09\xef\x7a\x8b\xa4\x7a\x4c\x7f\x22\xc6\x61\xd2\xda\x37\x4e\x46\x6d\x06\x94\xae\xa3\x0b\xf4\x91\x9e\xce\x01\x66\x33\xe0\xb6\xb8\x26\x2b\xbb\x65\x2f\x52\xca\xbe\x52\x61\x02\x03\x42\x09\xad\x83\x8e\x94\x39\xcf\xb4\x83\xa6\x13\xa4\x1e\x05\x4a\xc1\x97\xa5\x4f\x2f\x92\x04\x95\xc9\x63\xdf\xa3\x45\xbd\x5f\xbd\x7e\x16\x6e\x03\x39\x28\x02\x0b\xd4\xed\x6b\x9a\x54\xdb\xf5\x95\x20\x8f\xbb\xa3\x1d\x68\xd9\xe7\xc5\xf9\xe6\xf6\x26\xb0\xdf\x94\x61\x79\x8b\x89\x5b\xe6\xc3\x7b\x7f\x8d\xd0\xfc\xc2\xa0\xfd\x0b\x1e\x50\x54\x66\xaf\x9a\xbe\x60\xf3\x5c\xd5\x4a\xe1\xf6\x30\x0a\x1d\xf2\x78\xf5\x6d\xb7\x05\x07\xf6\x12\xf5\xe4\xd9\xef\xfa\x23\xdf\x4c\xf5\xb4\xcf\x45\x12\x4d\x19\x1f\xb2\xcc\x2e\x90\xc4\x9f\x39\xa6\x86\xcb\x8f\x79\xb4\xfb\x6e\x97\xca\xdb\xe4\x7b\x94\x87\x7e\xb4\xf1\x43\x5c\x2f\x4d\x11\xad\xb1\xc4\xb4\x16\x6a\x5e\xbd\xfd\xa0\x0c\xc1\x1d\x17\x79\x45\x7a\x3e\x6f\x79\x74\x7b\xa1\x44\x99\x6c\x61\xae\xf1\x76\x4c\x8b\x4f\x84\x99\xee\x46\x71\x5c\x77\x71\x23\x9c\x1a\xa5\x6b\x8b\x09\x54\xa2\x51\xb8\x1d\xdd\x9f\x7a\x3d\xdf\x59\x24\x9d\xb1\xcd\x75\x99\x09\xeb\xb0\x02\x9a\x7a\xd6\x97\xc2\x74\xb6\xb5\x27\x66\xf9\xa2\x21\xc9\x67\xd1\xef\x6a\x16\x97\xba\x0f\x7f\x99\x39\xd8\x80\xda\x47\xf5\x91\xef\x84\xa4\x5f\x84\x4a\x5c\x3c\x1e\x06\xa8\x86\x41\x3c\x4b\x37\x8f\xe8\x33\x8b\x59\x75\x7b\xf7\xd6\x1f\x3d\xfd\xf0\xc8\x44\x09\xf7\x30\x6b\x59\xb3\x0c\xbc\x5e\xcf\xd5\xaf\x96\xfb\x52\xe0\x01\xca\x98\x6c\xfa\x4f\xe0\xb6\x27\x53\xec\xf8\xe0\x26\xda\x75\xec\xb4\xf3\x12\xbc\x13\xd6\x47\x25\x4c\x36\x4b\x7f\x76\xe0\x3e\x7a\x39\xfa\x77\x00\x00\x00\xff\xff\x85\x7f\x10\xa7\xf4\x27\x00\x00") - -func coredns117JsonBytes() ([]byte, error) { - return bindataRead( - _coredns117Json, - "coredns-1.17.json", - ) -} - -func coredns117Json() (*asset, error) { - bytes, err := coredns117JsonBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "coredns-1.17.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x70, 0x23, 0x87, 0xb4, 0xbb, 0xaf, 0x6f, 0x43, 0xc2, 0xf2, 0xe, 0xd2, 0xc1, 0x68, 0x9c, 0xb8, 0x1c, 0xf1, 0x3, 0xac, 0x82, 0xf4, 0x54, 0x6d, 0x63, 0xf3, 0x36, 0xa2, 0x7c, 0xa2, 0x1}} - return a, nil -} - -var _coredns118Json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5f\x6f\x1b\x39\x0e\x7f\xcf\xa7\x18\x0c\xd0\xb7\xb5\x63\x37\x4d\xb7\x9b\xb7\x6c\x92\xeb\x06\xd7\xe4\x8c\x24\xdd\x97\xeb\x62\x21\x6b\x68\x5b\x67\x8d\xa8\xa3\x34\x4e\xdc\x22\xdf\xfd\xa0\xf9\x63\xcf\x1f\x69\x6c\xe7\xd2\x43\x0f\x58\x3f\xb4\x13\x89\xa4\x38\x24\x7f\x14\x29\xcd\xb7\xa3\x28\x8a\x99\x16\xbf\x03\x19\x81\x2a\x3e\x8b\xe2\xd5\x38\xfe\xc9\x8d\x0a\x0b\xa9\x89\xcf\xa2\x7f\x1e\x45\x51\x14\x7d\xcb\xff\x0d\x11\xe7\x33\x4b\xa1\x12\x37\x76\x0f\xb4\x12\x1c\xb6\x13\x29\x58\x96\x30\xcb\xe2\xb3\x8d\x18\x27\x48\x29\xb4\xcc\x0a\x54\xa6\x31\x11\x45\xb1\x26\x4c\xc1\x2e\x20\x33\x43\x81\xc7\x1a\xc9\x3a\xb9\xbf\x8c\x4f\x4f\x36\x42\x3d\x74\x86\x13\xd3\xe0\x28\x2d\x65\x10\x6f\x08\x9f\xb7\x3c\xb1\x64\x53\x90\x9d\xf5\x60\x69\x86\x2c\x65\x5f\x51\xb1\x47\x33\xe4\x98\x1e\x73\x4c\x35\x2a\x50\xf9\xc2\xcb\x6c\x0a\x83\x44\x99\xe6\xe2\xcb\x0f\x66\xc0\xb4\xee\x21\xc8\xa6\x40\x0a\x2c\xe4\xda\x71\x99\x19\x0b\x34\x30\xa5\x75\x2a\x35\x7b\x58\x14\x4b\x73\xba\x0b\x24\xb8\xbc\xbd\xf7\xbf\x51\x45\xe4\xd1\x21\x9f\x33\x9a\xf1\x2d\x81\x59\x1b\x0b\x69\x25\x69\x23\x27\x36\x1a\x78\xd3\x3d\xce\xea\x5b\xf7\x17\xbf\xba\xd1\x6a\x4b\xb7\xdf\xbc\xe4\x8e\xcf\xa2\xd3\x93\xf6\x38\xa1\x45\x8e\xd2\xb1\x7d\xbe\x9c\xb4\xd9\x2c\xa3\x39\xd8\x49\xc5\x5c\x9b\x7c\xfe\x69\x2f\x3d\x06\x96\xeb\x97\xe8\xf2\x70\x71\x88\x2e\x9b\xe7\x3f\x6a\xc6\x36\x20\x81\x5b\xa4\x76\x70\xf9\xe2\xc4\xeb\x49\x03\xc6\xc1\xea\x7c\x36\x13\x4a\xd8\xb5\x63\xb8\x45\x55\x8f\x90\xd8\xae\x8b\x00\xbf\x28\x82\xe9\x7a\xb2\xf1\xe4\x51\x4d\xda\xe1\x58\x3d\xe7\x1c\x33\x65\x0f\x84\xec\x7f\x0d\x2c\x8e\x04\x7b\xe1\xaa\x37\xf2\xbb\x52\x76\x07\xfe\x81\xe6\xea\x9a\xc2\x61\x72\x26\x64\xbe\xc0\xf0\xec\xf4\x24\xfa\xf6\x45\xb9\x09\x20\x42\x32\xc5\xf3\x02\x98\xb4\x8b\xe2\x79\x8b\xec\xa8\xcc\x04\x43\x89\x9c\xc9\x48\xa8\x01\x4b\x12\x1a\x32\xd2\x2c\x12\xfa\x7d\xf1\x50\x4a\x8b\x22\x8d\x89\x89\x84\x32\xc0\x33\x82\x6a\x70\xc6\xa4\xb4\x0b\xc2\x6c\xbe\xf0\xf3\x17\x84\xcf\xc5\x7f\xdb\x2c\x19\x9d\xb9\x1c\x5a\x8c\xce\x90\x1e\x19\x25\xd1\x30\x3a\x06\xcb\x8f\x09\x0c\xca\xd5\x90\xa3\x9a\x15\xf3\x9c\xf1\x05\x44\x27\xa3\xe2\x2f\x89\xa8\x8b\x27\x02\x89\x2c\xa9\x46\x59\x32\x65\x92\x29\x0e\x5f\xd4\xf3\x17\xd5\xcd\x2b\x55\x9c\x5d\xa0\x9a\x89\xf9\x0d\xd3\x7f\x85\x58\x2d\xc4\x98\xd6\xe6\xd8\x07\xcb\x4b\xd0\x12\xd7\x29\xfc\xc0\x90\x7c\xad\x7d\xeb\x25\xa6\xed\xdb\xb6\x08\xe7\x04\xc6\x5c\x02\x4b\xa4\x50\x70\x0f\x1c\x55\xe2\xac\xf0\x7e\x34\xaa\xad\x41\xa0\xa5\xe0\xcc\x4d\xbc\x6d\x0c\xaf\x84\xf3\xce\x6f\xc2\x58\xa4\xf5\x27\x91\x0a\x67\x96\xf1\x68\x8f\x44\x9f\x32\xcb\x17\x9f\x7c\x46\x7f\x99\xd9\x77\x05\x6a\x7d\x23\x6a\xec\x23\x96\x98\x85\xf9\xba\xad\x1f\xa1\x94\x42\xcd\x3f\xeb\x84\x59\xe8\x6a\x98\xb2\xa7\xfb\x8c\xe6\xb9\xd1\xdf\x9e\xbe\x69\xab\x92\xb2\xa7\xcf\x8a\xad\x98\x90\x6c\x9a\xa7\xbd\x71\x68\x77\xde\xec\x52\x77\x8d\x05\xbd\xba\x5a\x48\xb5\xec\xaa\xe3\x0f\xf6\xa8\xbf\x6c\xec\xb1\x73\x66\x61\x50\x69\x05\xfc\x6d\xdc\xe0\x7a\x6e\xbd\x29\x27\xc8\xe5\x3f\x88\x14\x8c\x65\xa9\x33\xbf\xca\xa4\x6c\x91\x79\xe1\xd5\xa3\xc3\x0e\x5f\xef\xf6\x76\xdd\xdf\x6d\x93\x77\x80\x50\xd8\x6a\x5b\x4a\x74\x94\x54\x98\xc0\x79\x78\x3e\xc7\xc2\xbf\x33\x41\x90\x5c\x66\x24\xd4\xfc\x9e\x2f\x20\xc9\x9c\x3f\xaf\xe7\x0a\x37\xc3\x57\x4f\xc0\x33\x5b\xe4\xb3\xae\x8c\x72\x9d\xfb\x12\x31\x0f\x40\x69\xbb\xa6\xdc\xfe\x7c\xec\xd1\x06\x58\x57\x4f\x9a\x8a\x02\x29\x2c\xa1\x4f\x4a\x2e\x69\x09\x79\x59\x35\x05\xcb\x86\xcd\x9c\x85\x5d\x7f\x34\x38\x51\x03\xb1\x02\xf4\xf1\xb5\xea\xa7\x5d\x31\x99\x41\xbf\x96\x39\x9d\x14\x2a\x7b\x8a\x7b\x68\xfe\x08\xce\x3d\x87\x15\x78\xa1\x01\x18\xf1\xc5\xff\xde\x04\x2c\x4d\xde\xbf\xeb\x15\xe5\x88\x28\x7d\xff\xee\x85\x76\x0a\xcc\xf8\x39\x7c\xd4\x5d\xca\x36\x55\xc7\x17\xb1\xc6\xe4\x5c\x59\xd1\x0f\x2f\x4d\x30\x03\x3a\x04\x5f\x3e\x5b\xfa\xbd\x9d\x6b\x50\xae\xee\x40\x17\x00\x67\xb4\xc9\x63\xf7\xfe\x3d\xad\x45\x7a\x10\x10\xfb\x23\x71\x1b\x8b\x55\xd6\xdb\x11\x04\x07\x44\xdf\xfe\xf1\x17\x85\x32\x6d\xfb\x17\x8e\xb0\x70\x8c\x85\xb9\x82\xe8\x8d\x2d\x6a\x94\x38\x5f\xff\xbd\xb4\x4d\x03\xa2\x0b\x34\x36\x2f\x9b\xfc\xc1\xeb\x17\x1a\x3f\x82\x98\x2f\x8a\x22\x66\xe4\xa1\xe8\x6a\xdf\xd6\xfa\xb9\x7f\xb7\x44\x65\x99\x50\x40\x3e\x6b\x7b\xc2\x9e\xd1\x3c\xe4\x97\x78\xe0\xda\x0f\xaf\x6b\xe3\xbc\x49\x29\x77\xce\xe3\x4d\xf3\xd5\xd5\xbd\xcb\x1c\x8b\x94\x15\x55\xcd\x1b\x33\x4c\x96\x34\x04\x4e\xc3\x37\x66\xf8\xc6\x1c\xc3\xd2\x54\x32\xcf\x56\xe3\xe1\xcf\xc3\xd1\x00\x96\x66\x9a\x09\x99\x0c\xc7\x1e\x3d\x0a\x51\x93\x4c\xca\x09\x4a\xc1\x73\x17\x5d\xcf\x6e\xd1\x4e\x08\x4c\xbd\x58\xaf\xb1\x48\xb1\x02\x05\xc6\x4c\x08\xa7\xdd\xaa\xab\x24\x9a\x31\x21\x33\x82\x87\x05\x81\x59\xa0\x74\x3d\xc0\xa9\xd7\x0c\x0b\x6b\xf5\x47\xb0\x41\x98\xc6\x9a\xd9\x85\x53\xeb\xb8\x68\x3e\x03\x38\xa9\xce\x44\x3e\x8c\x3e\x8c\x02\x14\x86\x2f\xa0\xa8\xd0\x7f\x7b\x78\x98\xf8\x42\xce\x1b\x70\xb1\xcb\x39\x82\xc9\x4b\x90\x6c\x5d\x2f\xbe\xbd\xc4\x1a\x48\x60\xb2\x25\x1b\xfb\xc9\x4c\xc6\x39\x18\x53\x37\xcf\xd8\x4b\x68\x45\x0a\x98\xd9\xad\xc0\xd3\x6e\xf6\xf6\xf8\x28\xdc\x8b\x6c\x35\xf5\x1c\x87\x55\xbf\x80\x2b\x36\xc8\x98\xf8\x0f\xa0\x3a\xcb\xfb\x97\x8e\x7c\xe7\x66\xfb\xba\xe3\x15\x55\xf3\x1c\xad\x79\xd5\x7b\xb8\x78\x75\xf5\x7e\x19\xef\x54\x30\x05\x4b\x82\xef\x65\xbf\x90\x82\x7b\x25\x13\x02\x96\x88\x97\xe0\xd9\xfb\x02\xff\x07\x78\xfe\xee\x10\x1d\xef\x05\x51\x02\x83\x19\x71\xf0\x35\x5c\x51\x91\x67\x53\x61\x43\xb3\x79\x47\x99\x22\xe5\x19\x7b\xfc\xf3\xe8\x46\xec\x6f\x00\xd7\x06\x81\xe9\x13\xcd\x75\x96\xcb\x1d\x8d\xd2\x90\x7f\xb6\xab\x07\x17\xdf\xcb\x0c\xf9\x39\xa0\xb0\xeb\x0b\x54\x16\x9e\x42\x71\x13\x33\x29\xf1\x71\x42\x62\x25\x24\xcc\xe1\xca\x70\x26\x59\x59\x44\xce\x98\x34\xe0\x7d\x51\xce\x34\x9b\x0a\x29\xac\x08\x5a\xd9\x89\x4e\x92\x9e\xb2\x2a\xbe\xbd\x7a\xf8\xf3\xd7\xeb\xdb\xcb\x3f\xef\xaf\xee\x7e\xbf\xbe\xb8\xf2\xd7\x2a\x1e\x64\xe5\xdc\x09\xa1\xee\x93\xce\xa4\x0c\x08\x3c\xc0\x9d\x2c\xf9\x87\x92\xeb\x3b\x44\xfb\x37\x21\xa1\x3c\x5a\x3a\x8b\x2c\x65\xb0\x97\x0f\x2c\x50\x2a\x54\x6e\xcf\x1b\x30\xc6\x55\x04\x15\x48\x13\x58\x1d\xd7\xa6\x07\x12\xe7\xbe\xcd\xc4\x23\x61\x53\x4f\x38\x9d\x7c\x3c\x2b\x94\x59\x0a\x37\x98\xa9\x43\xf7\xa1\xd4\xf1\x6c\x54\xac\xd5\x51\xa1\x60\xdd\x6e\x87\x6a\x26\xe6\x83\x62\xe5\x10\x71\x65\xcf\x90\x05\x0f\xcb\xfc\x4d\x5d\x6d\x1a\xdc\x71\x2a\x1d\x1d\xc9\x2b\x54\xb5\xad\x80\x74\xfb\xdd\xd6\x25\x97\x30\x63\x99\x6c\x57\x77\xb1\x26\x81\x39\x16\x25\x33\xe6\xb6\xd4\xa7\x08\xa7\x41\x75\xdb\xc7\x49\x58\xc1\x99\x6c\xf3\x12\x18\xcb\xc8\x6e\xd7\x38\x97\x8f\x6c\xdd\x39\xff\x33\x45\x53\x08\x54\x89\x4f\x0a\x55\x06\x9b\x89\x0e\x47\x37\x41\xb4\x2b\x76\xd3\xbc\xf3\x09\x9f\x3e\x36\x09\x6f\x7b\x8b\xa4\x7a\x4c\x7f\x24\xc6\x61\xd2\xda\x37\x4e\x46\x6d\x06\x94\xae\xa3\x0b\xf4\x91\x9e\xce\x01\x66\x33\xe0\xb6\xb8\x16\x2b\xbb\x65\x2f\x52\xca\xbe\x52\x61\x02\x03\x42\x09\xad\x83\x8e\x94\x39\xcf\xb4\x83\xa6\x13\xa4\x1e\x05\x4a\xc1\x17\xa5\x4f\xcf\x93\x04\x95\xc9\x63\xdf\xa3\x45\xbd\x5f\xbd\x7a\x12\x6e\x03\x39\x28\x02\x0b\xd4\xed\x6b\x9a\x54\xdb\xf5\xa5\x20\x8f\xbb\xa3\x1d\x68\xd9\xe7\xc5\xf9\xe6\xf6\x26\xb0\xdf\x94\x61\x79\x83\x89\x5b\xe6\xdd\x5b\x7f\x8d\xd0\xfc\xa2\xa0\xfd\x0b\x1e\x50\x54\x66\xaf\x9a\xbe\x60\xf3\x5c\xd5\x4a\xe1\xf6\x30\x0a\x1d\xf2\x78\xf5\x6d\xb7\x05\x07\xf6\x12\xf5\xe4\xd9\xef\xfa\x23\xdf\x4c\xf5\xb4\xcf\x45\x12\x4d\x19\x1f\xb2\xcc\x2e\x90\xc4\xd7\x1c\x53\xc3\xe5\x87\x3c\xda\x7d\xb7\x4b\xe5\xed\xf1\x1d\xca\x43\x3f\xd2\xf8\x21\xae\x97\xa6\x88\xd6\x58\x62\x5a\x0b\x35\xaf\xde\x7e\x50\x86\xe0\x8e\x8b\xbc\x22\x3d\x9f\xb5\x3c\xba\xbd\x50\xa2\x4c\xb6\x30\xd7\x78\x3b\xa6\xc5\x47\xc2\x4c\x77\xa3\x38\xae\xbb\xb8\x11\x4e\x8d\xd2\xb5\xc5\x04\x2a\xd1\x28\xdc\x8e\xee\x4f\xbd\x9e\xef\x2a\x92\xce\xd8\xe6\xba\xcc\x84\x75\x58\x01\x4d\x3d\xeb\x4b\x61\x3a\xdb\xda\x23\xb3\x7c\xd1\x90\xe4\xb3\xe8\x77\x35\x8b\x4b\xdd\x87\xbf\xcc\x1c\x6c\x40\xed\xa3\xfa\xc8\x77\x42\xd2\xaf\x42\x25\x2e\x1e\x0f\x03\x54\xc3\x20\x9e\xa5\x9b\x47\xf4\x99\xc5\xac\xba\xbd\x7b\xed\x8f\x9c\x7e\x78\x64\xa2\x84\x3b\x98\xb5\xac\x59\x06\x5e\xaf\xe7\xea\x57\xcb\x7d\x29\xf0\x00\x65\x4c\x36\xfd\x17\x70\xdb\x93\x29\x76\x7c\x60\x13\xed\x3a\x76\xda\x79\x09\xde\x09\xeb\xa3\x12\x26\x9b\xa5\x3f\x39\x70\x1f\x3d\x1f\xfd\x27\x00\x00\xff\xff\x09\xbb\x53\xfc\xe4\x27\x00\x00") - -func coredns118JsonBytes() ([]byte, error) { - return bindataRead( - _coredns118Json, - "coredns-1.18.json", - ) -} - -func coredns118Json() (*asset, error) { - bytes, err := coredns118JsonBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "coredns-1.18.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x9d, 0x4c, 0xd6, 0xfd, 0x7e, 0xcb, 0xe5, 0xc5, 0x9e, 0x2, 0x8, 0xd4, 0xd3, 0xe3, 0xba, 0x62, 0xf1, 0x1b, 0xea, 0x1, 0x31, 0x15, 0x6d, 0x18, 0x7e, 0x19, 0x41, 0x91, 0x51, 0xaa, 0xc7}} - return a, nil -} - -var _coredns119Json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5f\x73\x1b\xb9\x0d\x7f\xf7\xa7\xd8\xd9\x99\xbc\x9d\x64\x29\x8e\x53\x9f\xdf\x7c\xb6\x9b\xf3\x34\x76\x35\xb6\x73\x2f\xcd\xcd\x0d\xc5\x85\x24\x56\x5c\x82\x05\xb9\xb2\x75\x19\x7f\xf7\x0e\xf7\x8f\xb4\x7f\xc8\x95\xe4\x3a\x9d\x74\xa6\x7a\x48\xd6\x4b\x00\x04\x81\x1f\x40\x80\xdc\x6f\x47\x51\x14\x33\x2d\x7e\x03\x32\x02\x55\x7c\x1e\xc5\xab\x71\xfc\x93\x7b\x2b\x2c\xa4\x26\x3e\x8f\xfe\x71\x14\x45\x51\xf4\x2d\xff\x37\x44\x9c\x8f\x2c\x85\x4a\xdc\xbb\x07\xa0\x95\xe0\xb0\x1d\x48\xc1\xb2\x84\x59\x16\x9f\x6f\xc4\x38\x41\x4a\xa1\x65\x56\xa0\x32\x8d\x81\x28\x8a\x35\x61\x0a\x76\x01\x99\x19\x0a\x3c\xd6\x48\xd6\xc9\xfd\x79\x7c\x7a\xb2\x11\xea\xa1\x33\x9c\x98\x06\x47\x69\x29\x83\x78\x43\xf8\xb2\xe5\x89\x25\x9b\x82\xec\xcc\x07\x4b\x33\x64\x29\xfb\x13\x15\x7b\x32\x43\x8e\xe9\x31\xc7\x54\xa3\x02\x95\x4f\xbc\xcc\xa6\x30\x48\x94\x69\x4e\xbe\x3c\x33\x03\xa6\x75\x0f\x41\x36\x05\x52\x60\x21\xd7\x8e\xcb\xcc\x58\xa0\x81\x29\xad\x53\xa9\xd9\xc3\xa2\x58\x9a\xd3\x5d\x22\xc1\xd5\xdd\x83\x7f\x45\x15\x91\x47\x87\x7c\xcc\x68\xc6\xb7\x04\x66\x6d\x2c\xa4\x95\xa4\x8d\x9c\xd8\x68\xe0\x4d\xf7\x38\xab\x6f\xdd\x5f\xfc\xea\x46\xab\x4d\xdd\x5e\x79\xc9\x1d\x9f\x47\xa7\x27\xed\xf7\x84\x16\x39\x4a\xc7\xf6\xe5\x6a\xd2\x66\xb3\x8c\xe6\x60\x27\x15\x73\x6d\xf0\xe5\xa7\xbd\xf4\x18\x58\xae\x5f\xa3\xcb\xe3\xe5\x21\xba\x6c\x9e\x7f\xaf\x19\xdb\x80\x04\x6e\x91\xda\xe0\xf2\xe1\xc4\xeb\x49\x03\xc6\x85\xd5\xc5\x6c\x26\x94\xb0\x6b\xc7\x70\x87\xaa\x8e\x90\xd8\xae\x0b\x80\x5f\x16\x60\xba\x99\x6c\x3c\x79\x54\x93\x76\x78\xac\x5e\x70\x8e\x99\xb2\x07\x86\xec\x7f\x1c\x58\x1c\x09\xf6\x8a\xab\x5e\xe4\x77\xa5\xec\x06\xfe\x81\xe6\xea\x9a\xc2\xc5\xe4\x4c\xc8\x7c\x82\xe1\xf9\xe9\x49\xf4\xed\xab\x72\x03\x40\x84\x64\x8a\xe7\x05\x30\x69\x17\xc5\xf3\x36\xb2\xa3\x32\x13\x0c\x25\x72\x26\x23\xa1\x06\x2c\x49\x68\xc8\x48\xb3\x48\xe8\x8f\xc5\x43\x29\x2d\x8a\x34\x26\x26\x12\xca\x00\xcf\x08\xaa\x97\x33\x26\xa5\x5d\x10\x66\xf3\x85\x9f\xbf\x20\x7c\x29\xfe\xdb\x66\xc9\xe8\xdc\xe5\xd0\xe2\xed\x0c\xe9\x89\x51\x12\x0d\xa3\x63\xb0\xfc\x98\xc0\xa0\x5c\x0d\x39\xaa\x59\x31\xce\x19\x5f\x40\x74\x32\x2a\xfe\x92\x88\xba\x78\x22\x90\xc8\x92\xea\x2d\x4b\xa6\x4c\x32\xc5\xe1\xab\x7a\xf9\xaa\xba\x79\xa5\xc2\xd9\x25\xaa\x99\x98\xdf\x32\xfd\x7f\x88\xd5\x20\xc6\xb4\x36\xc7\xbe\xb0\xbc\x02\x2d\x71\x9d\xc2\x0f\x1c\x92\x6f\xb5\x6f\xbd\xc6\xb4\x7d\xdb\x16\xe1\x9c\xc0\x98\x2b\x60\x89\x14\x0a\x1e\x80\xa3\x4a\x9c\x15\x3e\x8e\x46\xb5\x39\x08\xb4\x14\x9c\xb9\x81\xf7\x8d\xd7\x2b\xe1\xbc\xf3\xab\x30\x16\x69\xfd\x59\xa4\xc2\x99\x65\x3c\xda\x23\xd1\xa7\xcc\xf2\xc5\x67\x9f\xd1\x5f\x67\xf6\x5d\x40\xad\x6f\x44\x8d\x7d\xc4\x12\xb3\x30\x5f\xb7\xf5\x23\x94\x52\xa8\xf9\x17\x9d\x30\x0b\x5d\x0d\x53\xf6\xfc\x90\xd1\x3c\x37\xfa\xfb\xd3\x77\x6d\x55\x52\xf6\xfc\x45\xb1\x15\x13\x92\x4d\xf3\xb4\x37\x0e\xed\xce\x9b\x5d\xea\xbe\x31\xa1\x57\x57\x0b\xa9\x96\x5d\x75\xfc\x60\x8f\xfa\xcb\xc6\x1e\x3b\x67\x16\x06\x95\x56\xc0\xdf\xc7\x0d\xae\x97\xd6\x4a\xbd\x71\xd3\x23\x7c\x87\x13\x77\xbb\xb1\xee\xc8\xb6\x2d\x3b\x08\x2f\x8c\xb0\xad\x11\x3a\x4a\x2a\x4c\xe0\x22\x3c\x9e\x83\xfc\x5f\x99\x20\x48\xae\x32\x12\x6a\xfe\xc0\x17\x90\x64\xce\x51\x37\x73\x85\x9b\xd7\xd7\xcf\xc0\x33\x5b\x24\xaa\xae\x8c\x72\x9e\x87\x32\x14\x1e\x81\xd2\x76\xb1\xb8\xfd\xf9\xd8\xa3\x4d\xc4\x5c\x3f\x6b\x2a\x2a\x9f\xb0\x84\x3e\x29\xb9\xa4\x25\xac\x2b\xeb\x6e\xf3\x10\x76\x5d\xd1\x60\x42\x0d\xc4\x8a\x40\x8e\x6f\x54\x3f\xed\x8a\xc9\x0c\xfa\x15\xcc\xe9\xa4\x50\xd9\x73\xdc\x43\xf3\x7b\x70\xec\x25\xac\xc0\xe1\x6b\x67\xc4\x17\xff\xfd\xd5\xb3\x34\xf9\xf8\xa1\x57\x94\x23\xa2\xf4\xe3\x87\x57\x9a\x28\x30\xe2\xe7\xf0\x51\x77\x29\xdb\x54\x1d\x37\xc4\x1a\x93\x0b\x65\x45\x7f\x50\x69\x82\x19\xd0\x21\x51\xe5\xb3\xa5\xdf\xd1\xb9\x06\xe5\xec\x2e\xd4\x02\x21\x19\x6d\xb2\xd7\x83\x7f\x8b\x6a\x91\x1e\x14\x7e\xfd\x20\xac\xc1\xb0\xcc\x75\x3b\x40\x70\x00\xfa\xf6\xc7\x5f\x14\xca\xaf\xed\x5f\x18\x61\x61\x8c\x85\xb9\x82\x81\x1b\x5b\xd4\x28\x71\xbe\xfe\x9b\x2f\x44\x17\x68\x6c\x5e\x05\xf9\xc1\xeb\x17\x1a\x3f\x81\x98\x2f\x8a\x9a\x64\xe4\xa1\xe8\x6a\xdf\xd6\xfa\xa5\x77\xf3\xe3\xa8\x2c\x13\x0a\xc8\x67\x6d\x0f\xec\x19\xcd\x43\x7e\x89\x07\xae\x9b\xf0\xba\x36\xce\x7b\x8e\x72\xbf\x3c\xde\xf4\x52\x5d\xdd\xbb\xcc\xb1\x48\x59\x51\xa4\xbc\x33\xc3\x64\x49\x43\xe0\x34\x7c\x67\x86\xef\xcc\x31\x2c\x4d\x25\xf3\x7c\x35\x1e\x9e\x0d\x47\x03\x58\x9a\x69\x26\x64\x32\x1c\x7b\xf4\x28\x44\x4d\x32\x29\x27\x28\x05\xcf\x5d\x74\x33\xbb\x43\x3b\x21\x30\xf5\xda\xbb\xc6\x22\xc5\x0a\x14\x18\x33\x21\x9c\x76\x8b\xa8\x92\x68\xc6\x84\xcc\x08\x1e\x17\x04\x66\x81\xd2\x95\xf4\xa7\x5e\x33\x2c\xac\xd5\x9f\xc0\x06\xc3\x34\xd6\xcc\x2e\x9c\x5a\xc7\x45\x2f\x19\x88\x93\xea\x88\xe3\x6c\x74\x36\x0a\x50\x18\xbe\x80\xa2\xe0\xfe\xf5\xf1\x71\xe2\x83\x9c\x17\x70\xb1\xcb\x39\x82\xc9\x2b\x90\x6c\x5d\xaf\xa5\xbd\xc4\x1a\x48\x60\xb2\x25\x1b\xfb\xc9\x4c\xc6\x39\x18\x53\x37\xcf\xd8\x4b\x68\x45\x0a\x98\xd9\xad\xc0\xd3\x6e\xf6\xf6\xf8\x28\xdc\x5a\x6c\x35\xf5\x9c\x6e\x55\xbf\x80\x2b\x36\x91\x31\xf1\x9f\x27\x75\xa6\xf7\x4f\x1d\xf9\x8e\xc1\xf6\x75\xc7\x1b\xaa\xe6\x39\x29\xf3\xaa\xf7\x78\xf9\xe6\xea\xfd\x3c\xde\xa9\x60\x0a\x96\x04\xdf\xcb\x7e\x21\x05\xf7\x4a\x26\x04\x2c\x11\xaf\x89\x67\xef\x02\xfe\x07\xe2\xf9\xbb\x87\xe8\x78\xaf\x10\x25\x30\x98\x11\x07\x5f\x9b\x15\x15\x79\x36\x15\x36\x34\x9a\x37\x88\x29\x52\x9e\xb1\xc7\x7f\x19\xdd\x8a\xfd\x0d\xe0\x9a\x1f\x30\x7d\xa2\xb9\xce\x72\xb9\xa3\x51\x1a\xf2\xcf\x76\xf6\xe0\xe4\x7b\x99\x21\x3f\xd6\x13\x76\x7d\x89\xca\xc2\x73\x08\x37\x31\x93\x12\x9f\x26\x24\x56\x42\xc2\x1c\xae\x0d\x67\x92\x95\x45\xe4\x8c\x49\x03\xde\x85\x72\xa6\xd9\x54\x48\x61\x45\xd0\xca\x4e\x74\x92\xf4\x94\x55\xf1\xdd\xf5\xe3\x1f\xbf\xdc\xdc\x5d\xfd\xf1\x70\x7d\xff\xdb\xcd\xe5\xb5\xbf\x56\xf1\x44\x56\xce\x9d\x10\xea\x3e\xe9\x4c\xca\x80\xc0\x03\xdc\xc9\x92\xbf\x2b\xb9\xbe\x47\xb4\x7f\x15\x12\xca\x93\xa2\xf3\xc8\x52\x06\x7b\xf9\xc0\x02\xa5\x42\xe5\xf6\xbc\x05\x63\x5c\x45\x50\x05\x69\x02\xab\xe3\xda\xf0\x40\xe2\xdc\xb7\x99\x78\x24\x6c\xea\x09\xa7\x93\x8f\x67\x85\x32\x4b\xe1\x16\x33\x75\xe8\x3e\x94\x3a\x9e\x8d\x8a\xb5\x3a\x2a\x04\xd6\xed\x76\xa8\x66\x62\x3e\x28\x66\x0e\x11\x57\xf6\x0c\x59\xf0\xb0\xcc\xdf\xd4\xd5\xa6\xc1\x1d\xa7\xd2\xd1\x91\xbc\x41\x55\xdb\x02\xa4\xdb\xef\xb6\x2e\xb9\x82\x19\xcb\x64\xbb\xba\x8b\x35\x09\xcc\x63\x51\x32\x63\xee\x4a\x7d\x0a\x38\x0d\xaa\xcb\x3b\x4e\xc2\x0a\xce\x64\x9b\x97\xc0\x58\x46\x76\x3b\xc7\x85\x7c\x62\xeb\xce\x71\x9e\x29\x9a\x42\xa0\x4a\x7c\x52\xa8\x32\xd8\x0c\x74\x38\xba\x09\xa2\x5d\xb1\x9b\xe6\x15\x4e\xf8\x30\xb1\x49\x78\xd7\x5b\x24\xd5\x31\xfd\x89\x18\x87\x49\x6b\xdf\x38\x19\xb5\x19\x50\xba\x8e\x2e\xd0\x47\x7a\x3a\x07\x98\xcd\x80\xdb\xe2\x96\xab\xec\x96\xbd\x91\x52\xf6\x95\x0a\x13\x18\x10\x4a\x18\x36\xbb\xa8\x94\x39\xcf\xb4\x41\xd3\x01\xa9\x47\x81\x52\xf0\x65\xe9\xd3\x8b\x24\x41\x65\x72\xec\x7b\xb4\xa8\xf7\xab\xd7\xcf\xc2\x6d\x20\x07\x21\xb0\x88\xba\x7d\x4d\x93\x6a\xbb\xbe\x12\xe4\x71\x77\xb4\x23\x5a\xf6\x59\x38\xdf\x5c\xc6\x04\xf6\x9b\x12\x96\xb7\x98\xb8\x69\x3e\xbc\xf7\xd7\x08\xcd\x0f\x04\xda\xbf\xe0\x01\x45\x65\xf6\xaa\xe9\x0b\x36\xcf\x55\xad\x14\x6e\x0f\xa3\xd0\x21\x8f\x57\xdf\x76\x5b\x70\x60\x2f\x51\x4f\x9e\xfd\xae\x3f\xf2\x8d\x54\x4f\xfb\xdc\x0b\xd1\x94\xf1\x21\xcb\xec\x02\x49\xfc\x99\xc7\xd4\x70\x79\x96\xa3\xdd\x77\x59\x54\x5e\x06\xdf\xa3\x3c\xf4\x9b\x8b\x1f\xe2\xb6\x68\x8a\x68\x8d\x25\xa6\xb5\x50\xf3\x6a\xf5\x83\x12\x82\x3b\xee\xe5\x8a\xf4\x7c\xde\xf2\xe8\xf6\x7e\x88\x32\xd9\x8a\xb9\xc6\xea\x98\x16\x9f\x08\x33\xdd\x45\x71\x5c\x77\x71\x03\x4e\x8d\xd2\xb5\xc5\x04\x2a\xd1\x28\xdc\x8e\xee\x4f\xbd\x9e\xcf\x24\x92\xce\xbb\xcd\xed\x97\x09\xeb\xb0\x02\x9a\x7a\xe6\x97\xc2\x74\xb6\xb5\x27\x66\xf9\xa2\x21\xc9\x67\xd1\xef\x6a\x16\x97\xba\x0f\x5f\xcc\x1c\x6c\x40\xed\xa3\xfa\x9b\xef\x14\x49\xbf\x08\x95\x38\x3c\x1e\x16\x50\x0d\x83\x78\xa6\x6e\x1e\xd1\x67\x16\xb3\xea\x32\xee\xad\xbf\x59\xfa\xe1\x23\x13\x25\xdc\xc3\xac\x65\xcd\x12\x78\xbd\x9e\xab\xdf\x14\xf7\xa5\xc0\x03\x94\x31\xd9\xf4\x9f\xc0\x6d\x4f\xa6\xd8\xf1\xbd\x4c\xb4\xeb\xd8\x69\xe7\x9d\x76\x07\xd6\x47\x65\x98\x6c\xa6\xfe\xec\x82\xfb\xe8\xe5\xe8\xdf\x01\x00\x00\xff\xff\x01\x81\x50\x2d\xb3\x27\x00\x00") - -func coredns119JsonBytes() ([]byte, error) { - return bindataRead( - _coredns119Json, - "coredns-1.19.json", - ) -} - -func coredns119Json() (*asset, error) { - bytes, err := coredns119JsonBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "coredns-1.19.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x8d, 0x3f, 0x60, 0xae, 0x0, 0x84, 0xaa, 0x11, 0xe6, 0x42, 0x56, 0xc5, 0xa9, 0x7d, 0xfb, 0xf, 0x61, 0x8, 0x58, 0x94, 0x36, 0xd4, 0x33, 0xff, 0x22, 0xac, 0x2a, 0x17, 0x78, 0x79, 0xfd}} - return a, nil -} - -var _coredns120Json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x5f\x6f\x1b\x39\x0e\x7f\xcf\xa7\x18\x0c\xd0\xb7\xb5\x63\x37\x9b\x5e\x36\x6f\xd9\x24\xd7\x0d\xae\xc9\x19\x49\xba\x2f\xd7\xc5\x42\xd6\xd0\xb6\xce\x1a\x51\x47\x69\x9c\x78\x8b\x7c\xf7\x83\xe6\x8f\x3d\x7f\xa4\xb1\x9d\x4d\x17\x3d\xe0\xfc\xd0\x4e\x46\x24\x45\x91\x3f\x52\xa4\x34\x5f\x8f\xa2\x28\x66\x5a\xfc\x0a\x64\x04\xaa\xf8\x3c\x8a\x57\xe3\xf8\x07\xf7\x56\x58\x48\x4d\x7c\x1e\xfd\xeb\x28\x8a\xa2\xe8\x6b\xfe\x6f\x88\x38\x1f\x59\x0a\x95\xb8\x77\x0f\x40\x2b\xc1\x61\x3b\x90\x82\x65\x09\xb3\x2c\x3e\xdf\x88\x71\x82\x94\x42\xcb\xac\x40\x65\x1a\x03\x51\x14\x6b\xc2\x14\xec\x02\x32\x33\x14\x78\xac\x91\xac\x93\xfb\xd3\xf8\xf4\x64\x23\xd4\x43\x67\x38\x31\x0d\x8e\xd2\x52\x06\xf1\x86\xf0\x65\xcb\x13\x4b\x36\x05\xd9\x99\x0f\x96\x66\xc8\x52\xf6\x07\x2a\xf6\x64\x86\x1c\xd3\x63\x8e\xa9\x46\x05\x2a\x9f\x78\x99\x4d\x61\x90\x28\xd3\x9c\x7c\x79\x66\x06\x4c\xeb\x1e\x82\x6c\x0a\xa4\xc0\x42\xae\x1d\x97\x99\xb1\x40\x03\x53\x5a\xa7\x52\xb3\x87\x45\xb1\x34\xa7\xbb\x44\x82\xab\xbb\x07\xff\x8a\x2a\x22\x8f\x0e\xf9\x98\xd1\x8c\x6f\x09\xcc\xda\x58\x48\x2b\x49\x1b\x39\xb1\xd1\xc0\x9b\xee\x71\x56\xdf\xba\xbf\xf8\xd5\x8d\x56\x9b\xba\xbd\xf2\x92\x3b\x3e\x8f\x4e\x4f\xda\xef\x09\x2d\x72\x94\x8e\xed\xf3\xd5\xa4\xcd\x66\x19\xcd\xc1\x4e\x2a\xe6\xda\xe0\xcb\x0f\x7b\xe9\x31\xb0\x5c\xbf\x46\x97\xc7\xcb\x43\x74\xd9\x3c\xff\x56\x33\xb6\x01\x09\xdc\x22\xb5\xc1\xe5\xc3\x89\xd7\x93\x06\x8c\x0b\xab\x8b\xd9\x4c\x28\x61\xd7\x8e\xe1\x0e\x55\x1d\x21\xb1\x5d\x17\x00\xbf\x2c\xc0\x74\x33\xd9\x78\xf2\xa8\x26\xed\xf0\x58\xbd\xe0\x1c\x33\x65\x0f\x0c\xd9\x3f\x1d\x58\x1c\x09\xf6\x8a\xab\x5e\xe4\x77\xa5\xec\x06\xfe\x81\xe6\xea\x9a\xc2\xc5\xe4\x4c\xc8\x7c\x82\xe1\xf9\xe9\x49\xf4\xf5\x8b\x72\x03\x40\x84\x64\x8a\xe7\x05\x30\x69\x17\xc5\xf3\x36\xb2\xa3\x32\x13\x0c\x25\x72\x26\x23\xa1\x06\x2c\x49\x68\xc8\x48\xb3\x48\xe8\x0f\xc5\x43\x29\x2d\x8a\x34\x26\x26\x12\xca\x00\xcf\x08\xaa\x97\x33\x26\xa5\x5d\x10\x66\xf3\x85\x9f\xbf\x20\x7c\x29\xfe\xdb\x66\xc9\xe8\xdc\xe5\xd0\xe2\xed\x0c\xe9\x89\x51\x12\x0d\xa3\x63\xb0\xfc\x98\xc0\xa0\x5c\x0d\x39\xaa\x59\x31\xce\x19\x5f\x40\x74\x32\x2a\xfe\x92\x88\xba\x78\x22\x90\xc8\x92\xea\x2d\x4b\xa6\x4c\x32\xc5\xe1\x8b\x7a\xf9\xa2\xba\x79\xa5\xc2\xd9\x25\xaa\x99\x98\xdf\x32\xfd\x7f\x88\xd5\x20\xc6\xb4\x36\xc7\xbe\xb0\xbc\x02\x2d\x71\x9d\xc2\x77\x1c\x92\x6f\xb5\x6f\xbd\xc6\xb4\x7d\xdb\x16\xe1\x9c\xc0\x98\x2b\x60\x89\x14\x0a\x1e\x80\xa3\x4a\x9c\x15\x3e\x8c\x46\xb5\x39\x08\xb4\x14\x9c\xb9\x81\xf7\x8d\xd7\x2b\xe1\xbc\xf3\x8b\x30\x16\x69\xfd\x49\xa4\xc2\x99\x65\x3c\xda\x23\xd1\xa7\xcc\xf2\xc5\x27\x9f\xd1\x5f\x67\xf6\x5d\x40\xad\x6f\x44\x8d\x7d\xc4\x12\xb3\x30\x5f\xb7\xf5\x23\x94\x52\xa8\xf9\x67\x9d\x30\x0b\x5d\x0d\x53\xf6\xfc\x90\xd1\x3c\x37\xfa\xfb\xd3\x77\x6d\x55\x52\xf6\xfc\x59\xb1\x15\x13\x92\x4d\xf3\xb4\x37\x0e\xed\xce\x9b\x5d\xea\xbe\x31\xa1\x57\x57\x0b\xa9\x96\x5d\x75\xfc\x60\x8f\xfa\xcb\xc6\x1e\x3b\x67\x16\x06\x95\x56\xc0\xdf\xc7\x0d\xae\x97\xd6\x4a\xbd\x71\xd3\x23\x7c\x87\x13\x77\xbb\xb1\xee\xc8\xb6\x2d\x3b\x08\x2f\x8c\xb0\xad\x11\x3a\x4a\x2a\x4c\xe0\x22\x3c\x9e\x83\xfc\x3f\x99\x20\x48\xae\x32\x12\x6a\xfe\xc0\x17\x90\x64\xce\x51\x37\x73\x85\x9b\xd7\xd7\xcf\xc0\x33\x5b\x24\xaa\xae\x8c\x72\x9e\x87\x32\x14\x1e\x81\xd2\x76\xb1\xb8\xfd\xf9\xd8\xa3\x4d\xc4\x5c\x3f\x6b\x2a\x2a\x9f\xb0\x84\x3e\x29\xb9\xa4\x25\xac\x2b\xeb\x6e\xf3\x10\x76\x5d\xd1\x60\x42\x0d\xc4\x8a\x40\x8e\x6f\x54\x3f\xed\x8a\xc9\x0c\xfa\x15\xcc\xe9\xa4\x50\xd9\x73\xdc\x43\xf3\x5b\x70\xec\x25\xac\xc0\xe1\x6b\x67\xc4\x17\x7f\xfd\xea\x59\x9a\x7c\xf8\xb1\x57\x94\x23\xa2\xf4\xc3\x8f\xaf\x34\x51\x60\xc4\xcf\xe1\xa3\xee\x52\xb6\xa9\x3a\x6e\x88\x35\x26\x17\xca\x8a\xfe\xa0\xd2\x04\x33\xa0\x43\xa2\xca\x67\x4b\xbf\xa3\x73\x0d\xca\xd9\x5d\xa8\x05\x42\x32\xda\x64\xaf\x07\xff\x16\xd5\x22\x3d\x28\xfc\xfa\x41\x58\x83\x61\x99\xeb\x76\x80\xe0\x00\xf4\xed\x8f\xbf\x28\x94\x5f\xdb\xbf\x30\xc2\xc2\x18\x0b\x73\x05\x03\x37\xb6\xa8\x51\xe2\x7c\xfd\x0f\x5f\x88\x2e\xd0\xd8\xbc\x0a\xf2\x83\xd7\x2f\x34\x7e\x02\x31\x5f\x14\x35\xc9\xc8\x43\xd1\xd5\xbe\xad\xf5\x4b\xef\xe6\xc7\x51\x59\x26\x14\x90\xcf\xda\x1e\xd8\x33\x9a\x87\xfc\x12\x0f\x5c\x37\xe1\x75\x6d\x9c\xf7\x1c\xe5\x7e\x79\xbc\xe9\xa5\xba\xba\x77\x99\x63\x91\xb2\xa2\x48\x79\x67\x86\xc9\x92\x86\xc0\x69\xf8\xce\x0c\xdf\x99\x63\x58\x9a\x4a\xe6\xf9\x6a\x3c\x3c\x1b\x9e\x0c\x60\x69\xa6\x99\x90\xc9\x70\xec\xd1\xa3\x10\x35\xc9\xa4\x9c\xa0\x14\x3c\x77\xd1\xcd\xec\x0e\xed\x84\xc0\xd4\x6b\xef\x1a\x8b\x14\x2b\x50\x60\xcc\x84\x70\xda\x2d\xa2\x4a\xa2\x19\x13\x32\x23\x78\x5c\x10\x98\x05\x4a\x57\xd2\x9f\x7a\xcd\xb0\xb0\x56\x7f\x04\x1b\x0c\xd3\x58\x33\xbb\x70\x6a\x1d\x17\xbd\x64\x20\x4e\xaa\x23\x8e\xb3\xd1\xd9\x28\x40\x61\xf8\x02\x8a\x82\xfb\x97\xc7\xc7\x89\x0f\x72\x5e\xc0\xc5\x2e\xe7\x08\x26\xaf\x40\xb2\x75\xbd\x96\xf6\x12\x6b\x20\x81\xc9\x96\x6c\xec\x27\x33\x19\xe7\x60\x4c\xdd\x3c\x63\x2f\xa1\x15\x29\x60\x66\xb7\x02\x4f\xbb\xd9\xdb\xe3\xa3\x70\x6b\xb1\xd5\xd4\x73\xba\x55\xfd\x02\xae\xd8\x44\xc6\xc4\x7f\x9e\xd4\x99\xde\x3f\x75\xe4\x3b\x06\xdb\xd7\x1d\x6f\xa8\x9a\xe7\xa4\xcc\xab\xde\xe3\xe5\x9b\xab\xf7\xd3\x78\xa7\x82\x29\x58\x12\x7c\x2f\xfb\x85\x14\xdc\x2b\x99\x10\xb0\x44\xbc\x26\x9e\xbd\x0b\xf8\x1f\x88\xe7\x6f\x1e\xa2\xe3\xbd\x42\x94\xc0\x60\x46\x1c\x7c\x6d\x56\x54\xe4\xd9\x54\xd8\xd0\x68\xde\x20\xa6\x48\x79\xc6\x1e\xff\x6d\x74\x2b\xf6\x37\x80\x6b\x7e\xc0\xf4\x89\xe6\x3a\xcb\xe5\x8e\x46\x69\xc8\x3f\xdb\xd9\x83\x93\xef\x65\x86\xfc\x58\x4f\xd8\xf5\x25\x2a\x0b\xcf\x21\xdc\xc4\x4c\x4a\x7c\x9a\x90\x58\x09\x09\x73\xb8\x36\x9c\x49\x56\x16\x91\x33\x26\x0d\x78\x17\xca\x99\x66\x53\x21\x85\x15\x41\x2b\x3b\xd1\x49\xd2\x53\x56\xc5\x77\xd7\x8f\xbf\xff\x7c\x73\x77\xf5\xfb\xc3\xf5\xfd\xaf\x37\x97\xd7\xfe\x5a\xc5\x13\x59\x39\x77\x42\xa8\xfb\xa4\x33\x29\x03\x02\x0f\x70\x27\x4b\xfe\xa9\xe4\xfa\x1e\xd1\xfe\x5d\x48\x28\x4f\x8a\xce\x23\x4b\x19\xec\xe5\x03\x0b\x94\x0a\x95\xdb\xf3\x16\x8c\x71\x15\x41\x15\xa4\x09\xac\x8e\x6b\xc3\x03\x89\x73\xdf\x66\xe2\x91\xb0\xa9\x27\x9c\x4e\x3e\x9e\x15\xca\x2c\x85\x5b\xcc\xd4\xa1\xfb\x50\xea\x78\x36\x2a\xd6\xea\xa8\x10\x58\xb7\xdb\xa1\x9a\x89\xf9\xa0\x98\x39\x44\x5c\xd9\x33\x64\xc1\xc3\x32\x7f\x53\x57\x9b\x06\x77\x9c\x4a\x47\x47\xf2\x06\x55\x6d\x0b\x90\x6e\xbf\xdb\xba\xe4\x0a\x66\x2c\x93\xed\xea\x2e\xd6\x24\x30\x8f\x45\xc9\x8c\xb9\x2b\xf5\x29\xe0\x34\xa8\x2e\xef\x38\x09\x2b\x38\x93\x6d\x5e\x02\x63\x19\xd9\xed\x1c\x17\xf2\x89\xad\x3b\xc7\x79\xa6\x68\x0a\x81\x2a\xf1\x49\xa1\xca\x60\x33\xd0\xe1\xe8\x26\x88\x76\xc5\x6e\x9a\x57\x38\xe1\xc3\xc4\x26\xe1\x5d\x6f\x91\x54\xc7\xf4\x47\x62\x1c\x26\xad\x7d\xe3\x64\xd4\x66\x40\xe9\x3a\xba\x40\x1f\xe9\xe9\x1c\x60\x36\x03\x6e\x8b\x5b\xae\xb2\x5b\xf6\x46\x4a\xd9\x57\x2a\x4c\x60\x40\x28\x61\xd8\xec\xa2\x52\xe6\x3c\xd3\x06\x4d\x07\xa4\x1e\x05\x4a\xc1\x97\xa5\x4f\x2f\x92\x04\x95\xc9\xb1\xef\xd1\xa2\xde\xaf\x5e\x3f\x0b\xb7\x81\x1c\x84\xc0\x22\xea\xf6\x35\x4d\xaa\xed\xfa\x4a\x90\xc7\xdd\xd1\x8e\x68\xd9\x67\xe1\x7c\x73\x19\x13\xd8\x6f\x4a\x58\xde\x62\xe2\xa6\xf9\xf1\xbd\xbf\x46\x68\x7e\x20\xd0\xfe\x05\x0f\x28\x2a\xb3\x57\x4d\x5f\xb0\x79\xae\x6a\xa5\x70\x7b\x18\x85\x0e\x79\xbc\xfa\xb6\xdb\x82\x03\x7b\x89\x7a\xf2\xec\x77\xfd\x91\x6f\xa4\x7a\xda\xe7\x5e\x88\xa6\x8c\x0f\x59\x66\x17\x48\xe2\x8f\x3c\xa6\x86\xcb\xb3\x1c\xed\xbe\xcb\xa2\xf2\x32\xf8\x1e\xe5\xa1\xdf\x5c\x7c\x17\xb7\x45\x53\x44\x6b\x2c\x31\xad\x85\x9a\x57\xab\x1f\x94\x10\xdc\x71\x2f\x57\xa4\xe7\xf3\x96\x47\xb7\xf7\x43\x94\xc9\x56\xcc\x35\x56\xc7\xb4\xf8\x48\x98\xe9\x2e\x8a\xe3\xba\x8b\x1b\x70\x6a\x94\xae\x2d\x26\x50\x89\x46\xe1\x76\x74\x7f\xea\xf5\x7c\x26\x91\x74\xde\x6d\x6e\xbf\x4c\x58\x87\x15\xd0\xd4\x33\xbf\x14\xa6\xb3\xad\x3d\x31\xcb\x17\x0d\x49\x3e\x8b\x7e\x53\xb3\xb8\xd4\x7d\xf8\x62\xe6\x60\xdf\x4c\xed\x44\x18\x8e\x2b\xa0\x75\x19\x47\x7f\xce\xbb\x52\xfc\x15\xce\x39\xaa\xbf\xf9\x46\xf9\xe2\x67\xa1\x12\x17\x75\x87\xa5\x8d\x86\xbd\x3c\x53\x37\x2f\x22\x32\x8b\x59\x75\xe5\xf8\xd6\x5f\x66\x7d\xf7\xf9\x07\x25\xdc\xc3\xac\x65\xcd\x12\xa7\xbd\x9e\xab\xdf\x87\xf7\x25\xfa\x03\x94\x31\xd9\xf4\xdf\xc0\x6d\x4f\x3e\xdc\xf1\x55\x50\xb4\xeb\x70\x6d\xe7\xcd\x7d\x07\xd6\x47\x65\xf0\x6c\xa6\xfe\xe4\xa2\xe4\xe8\xe5\xe8\xbf\x01\x00\x00\xff\xff\xfb\xb7\x82\x44\x99\x28\x00\x00") - -func coredns120JsonBytes() ([]byte, error) { - return bindataRead( - _coredns120Json, - "coredns-1.20.json", - ) -} - -func coredns120Json() (*asset, error) { - bytes, err := coredns120JsonBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "coredns-1.20.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x95, 0x2e, 0x4e, 0x5, 0x56, 0xf8, 0xe4, 0x8, 0xf6, 0xc3, 0xef, 0x2e, 0x9, 0x61, 0xda, 0x19, 0x9e, 0xb8, 0x55, 0xa9, 0xf2, 0x89, 0xb8, 0x37, 0x66, 0x78, 0x3, 0x9d, 0x4, 0xc4, 0xfc}} - return a, nil -} - -var _coredns121Json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\xdf\x6f\x1b\x39\xee\x7f\xcf\x5f\x31\x18\xa0\x6f\xb5\x63\x37\x49\xbf\xd9\xbc\x65\x93\x6c\x37\xf8\x36\x39\x23\x4e\xf7\xe5\xba\x58\xc8\x1a\xda\xd6\x59\x23\xea\x28\x8d\x13\x6f\x91\xff\xfd\x30\xbf\x3c\xbf\xa4\xb1\x9d\x4d\x17\x3d\xe0\xfc\xd0\x3a\x12\x49\x51\xe4\x87\x14\x29\xf9\xdb\x51\x10\x84\x4c\x8b\xdf\x80\x8c\x40\x15\x5e\x04\xe1\x7a\x1c\xbe\x4f\x47\x85\x85\xd8\x84\x17\xc1\x3f\x8f\x82\x20\x08\xbe\x65\xff\xfa\x88\xb3\x99\x95\x50\x51\x3a\x36\x05\x5a\x0b\x0e\xd5\x44\x0c\x96\x45\xcc\xb2\xf0\x62\x2b\x26\x15\xa4\x14\x5a\x66\x05\x2a\xd3\x98\x08\x82\x50\x13\xc6\x60\x97\x90\x98\xa1\xc0\x63\x8d\x64\x53\xb9\x3f\x8d\xcf\x4e\xb6\x42\x1d\x74\x86\x13\xd3\x90\x52\x5a\x4a\x20\xdc\x12\xbe\x54\x3c\xa1\x64\x33\x90\x9d\xf5\x60\x65\x86\x2c\x66\x7f\xa2\x62\x4f\x66\xc8\x31\x3e\xe6\x18\x6b\x54\xa0\xb2\x85\x57\xc9\x0c\x06\x91\x32\xcd\xc5\x57\xe7\x66\xc0\xb4\xee\x21\x48\x66\x40\x0a\x2c\x64\xda\x71\x99\x18\x0b\x34\x30\x85\x75\x4a\x35\x7b\x58\x14\x8b\x33\xba\x2b\x24\xb8\xbe\x9f\xba\x77\x54\x12\x39\x74\xc8\xe6\x8c\x66\xbc\x22\x30\x1b\x63\x21\x2e\x25\x6d\xe5\x84\x46\x03\x6f\xba\x47\xe8\x5f\x58\x2c\xa4\x80\x0a\x03\xc5\xcc\xed\x64\x7d\x5a\xe9\xf2\xfb\xfb\x0e\xcf\x66\x82\x52\xf0\x4d\x86\x05\xa1\x16\x12\xa6\x96\xf1\x55\x5d\xb1\xd4\xa5\x6d\xb9\x75\x8f\xd4\xf6\xd5\x36\x6b\xc1\x1d\x5e\x04\x67\x27\xed\x71\x42\x8b\x1c\x65\xca\xf6\xe5\x7a\xd2\x66\xb3\x8c\x16\x60\x27\x25\x73\x6d\xf2\xe5\xfd\x5e\x7a\x0c\x2c\xd7\xaf\xd1\xe5\xf1\xea\x10\x5d\x9c\x96\x35\x20\x81\x5b\xa4\x36\x72\x5d\x20\x74\xc2\xc4\x80\x49\x63\xf6\x72\x3e\x17\x4a\xd8\xcc\x37\xf7\xa8\xea\xf0\x0b\xed\x26\x8f\x9e\xab\x1c\xa9\xb7\x93\x2d\x4c\x8e\x6a\xd2\x0e\x4f\x04\x97\x9c\x63\xa2\xec\x81\xf9\xe0\x2f\x47\x2d\x47\x82\xbd\x82\xb6\x37\xac\xba\x52\x76\x47\xd5\x81\xe6\xea\x9a\x22\x0d\xf8\xb9\x90\xd9\x02\xc3\x8b\xb3\x93\xe0\xdb\x57\x95\x4e\x00\x11\x92\xc9\xbf\x2f\x81\x49\xbb\xcc\xbf\x57\x69\x23\x28\xd2\xcc\x50\x22\x67\x32\x10\x6a\xc0\xa2\x88\x86\x8c\x34\x0b\x84\xfe\x98\x7f\x29\xa4\x05\x81\xc6\xc8\x04\x42\x19\xe0\x09\x41\x39\x38\x67\x52\xda\x25\x61\xb2\x58\xba\xf9\x73\xc2\x97\xfc\xbf\x2a\x05\x07\x17\x69\x82\xce\x47\xe7\x48\x4f\x8c\xa2\x60\x18\x1c\x83\xe5\xc7\x04\x06\xe5\x7a\xc8\x51\xcd\xf3\x79\xce\xf8\x12\x82\x93\x51\xfe\x97\x44\xd4\xf9\x37\x02\x89\x2c\x2a\x47\x59\x34\x63\x92\x29\x0e\x5f\xd5\xcb\x57\xd5\x4d\x5a\x25\xce\xae\x50\xcd\xc5\xe2\x8e\xe9\xff\x41\xac\x06\x31\xa6\xb5\x39\x76\x85\xe5\x35\x68\x89\x9b\x18\x7e\xe0\x90\x7c\xab\x43\xf1\x35\xa6\xed\x39\x13\x35\xe1\x82\xc0\x98\x6b\x60\x91\x14\x0a\xa6\xc0\x51\x45\xa9\x15\x3e\x8e\x46\xb5\x35\x08\xb4\x14\x9c\xa5\x13\x1f\x1a\xc3\x6b\x91\x7a\xe7\x57\x61\x2c\xd2\xe6\xb3\x88\x45\x6a\x96\xf1\x68\x8f\x44\x1f\x33\xcb\x97\x9f\x5d\x46\x7f\x9d\xd9\x77\x01\xb5\x7e\x10\x35\xce\x11\x4b\xcc\xc2\x62\xd3\xd6\x8f\x50\x4a\xa1\x16\x5f\x74\xc4\x2c\x74\x35\x8c\xd9\xf3\x34\xa1\x45\x66\xf4\x0f\x67\xef\xda\xaa\xc4\xec\xf9\x8b\x62\x6b\x26\x24\x9b\x65\x69\x6f\xec\x3b\x9d\xb7\xa7\xd4\x43\x63\x41\xa7\xae\x16\x62\x2d\xbb\xea\xb8\xc1\x1e\xf4\xd7\xa4\x3d\x76\x4e\x2c\x0c\x4a\xad\x80\x7f\x08\x1b\x5c\x2f\xad\x9d\x3a\xe3\xa6\x47\xf8\x0e\x27\xee\x76\x63\xdd\x91\x6d\x5b\x76\x10\x9e\x1b\xa1\xaa\x11\x3a\x4a\x2a\x8c\xe0\xd2\x3f\x9f\x81\xfc\xdf\x89\x20\x88\xae\x13\x12\x6a\x31\xe5\x4b\x88\x92\xd4\x51\xb7\x0b\x85\xdb\xe1\x9b\x67\xe0\x89\xcd\x13\x55\x57\x46\xb1\xce\xb4\x08\x85\x47\xa0\xb8\x5d\x2c\x56\x1f\x17\x7b\xb0\x8d\x98\x9b\x67\x4d\x79\xe5\xe3\x97\xd0\x27\x25\x93\xb4\x82\x4d\x69\xdd\x2a\x0f\x61\xd7\x15\x0d\x26\xd4\x40\x2c\x0f\xe4\xf0\x56\xf5\xd3\xae\x99\x4c\x3a\x75\xb6\x83\x4e\x0a\x95\x3c\x87\x3d\x34\xbf\x7b\xe7\x5e\xfc\x0a\x1c\xbe\x77\x46\x7c\xf9\xf7\xef\x9e\xc5\xd1\xc7\xd3\x5e\x51\x29\x11\xc5\x1f\x4f\x5f\x69\x22\xcf\x8c\x9b\xc3\x45\xdd\xa5\x6c\x53\x75\xdc\x10\x6a\x8c\x2e\x95\x15\xfd\x41\xa5\x09\xe6\x40\x87\x44\x95\xcb\x96\x6e\x47\x67\x1a\x14\xab\xa7\xa1\xe6\x09\xc9\x60\x9b\xbd\xa6\xee\x23\xaa\x45\x7a\x50\xf8\xf5\x83\xb0\x06\xc3\x22\xd7\xed\x00\xc1\x01\xe8\xdb\x1f\x7f\x81\x2f\xbf\xb6\x3f\x7e\x84\xf9\x31\xe6\xe7\xf2\x06\x6e\x68\x51\xa3\xc4\xc5\xe6\xff\x5d\x21\xba\x44\x63\xb3\x2a\xc8\x0d\x5e\xb7\xd0\xf0\x09\xc4\x62\x99\xd7\x24\x23\x07\x45\x57\xfb\xb6\xd6\x2f\xbd\x87\x1f\x47\x65\x99\x50\x40\x2e\x6b\x3b\x60\xcf\x68\xe1\xf3\x4b\x38\x48\xbb\x09\xa7\x6b\xc3\xac\xe7\x28\xce\xcb\xe3\x6d\x2f\xd5\xd5\xbd\xcb\x1c\x8a\x98\xe5\x45\xca\x3b\x33\x8c\x56\x34\x04\x4e\xc3\x77\x66\xf8\xce\x1c\xc3\xca\x94\x32\x2f\xd6\xe3\xe1\xf9\xf0\x74\x00\x2b\x33\x4b\x84\x8c\x86\x63\x87\x1e\xb9\xa8\x49\x22\x65\x75\x1b\x72\x3b\xbf\x47\x3b\x21\x30\xf5\xda\xbb\xc6\x22\xc5\x1a\x14\x18\x33\x21\x9c\x75\x8b\xa8\x82\x68\xce\x84\x4c\x08\x1e\x97\x04\x66\x89\x32\x2d\xe9\xcf\x9c\x66\x58\x5a\xab\x3f\x81\xf5\x86\x69\xa8\x99\x5d\xa6\x6a\x1d\xe7\xbd\xa4\x27\x4e\xca\x2b\x8e\xf3\xd1\xf9\xc8\x43\x61\xf8\x12\xf2\x82\xfb\xd7\xc7\xc7\x89\x0b\x72\x4e\xc0\x85\x69\xce\x11\x4c\x5e\x83\x64\x9b\x7a\x2d\xed\x24\xd6\x40\x02\xa3\x8a\x6c\xec\x26\x33\x09\xe7\x60\x4c\xdd\x3c\x63\x27\xa1\x15\x31\x60\x62\x2b\x81\x67\xdd\xec\xed\xf0\x91\xbf\xb5\xa8\x34\x75\xdc\x6e\x95\x1f\x8f\x2b\xb6\x91\x31\x71\xdf\x27\x75\x96\x77\x2f\x1d\xb8\xae\xc1\xf6\x75\xc7\x1b\xaa\xe6\xb8\x29\x73\xaa\xf7\x78\xf5\xe6\xea\xfd\x34\xde\xa9\x60\x0c\x96\x04\xdf\xcb\x7e\x3e\x05\xf7\x4a\x26\x04\x2c\x12\xaf\x89\x67\xe7\x06\xfe\x0b\xe2\xf9\xbb\x87\xe8\x78\xaf\x10\x25\x30\x98\x10\x07\x57\x9b\x15\xe4\x79\x36\x16\xd6\x37\x9b\x35\x88\x31\x52\x96\xb1\xc7\xff\x37\xba\x13\xfb\x1b\x20\x6d\x7e\xc0\xf4\x89\xe6\x3a\xc9\xe4\x8e\x46\xb1\xcf\x3f\xd5\xea\xde\xc5\xf7\x32\x43\x76\xad\x27\xec\xe6\x0a\x95\x85\x67\x1f\x6e\x42\x26\x25\x3e\x4d\x48\xac\x85\x84\x05\xdc\x18\xce\x24\x2b\x8a\xc8\x39\x93\x06\x9c\x1b\xe5\x4c\xb3\x99\x90\xc2\x0a\xaf\x95\x53\xd1\x51\xd4\x53\x56\x85\xf7\x37\x8f\x7f\xfc\x7c\x7b\x7f\xfd\xc7\xf4\xe6\xe1\xb7\xdb\xab\x1b\x77\xad\xe2\x88\xac\x8c\x3b\x22\xd4\x7d\xd2\x99\x94\x1e\x81\x07\xb8\x93\x45\xff\x50\x72\xf3\x80\x68\x7f\x11\x12\x8a\x9b\xa2\x8b\xc0\x52\x02\x7b\xf9\xc0\x02\xc5\x42\x65\xf6\xbc\x03\x63\xd2\x8a\xa0\x0c\xd2\x08\xd6\xc7\xb5\xe9\x81\xc4\x85\xeb\x30\x71\x48\xd8\xd6\x13\xa9\x4e\x2e\x9e\x35\xca\x24\x86\x3b\x4c\xd4\xa1\xe7\x50\x9c\xf2\x6c\x55\xac\xd5\x51\x3e\xb0\x56\xc7\xa1\x9a\x8b\xc5\x20\x5f\xd9\x47\x5c\xda\xd3\x67\xc1\xc3\x32\x7f\x53\x57\x1b\x7b\x4f\x9c\x52\xc7\x94\xe4\x0d\xaa\xda\x16\x20\xd3\xf3\xae\x72\xc9\x35\xcc\x59\x22\xdb\xd5\x5d\xa8\x49\x60\x16\x8b\x92\x19\x73\x5f\xe8\x93\xc3\x69\x50\xbe\x0c\x72\x12\x56\x70\x26\xdb\xbc\x04\xc6\x32\xb2\xd5\x1a\x97\xf2\x89\x6d\x3a\xd7\x79\x26\x6f\x0a\x81\x4a\xf1\x51\xae\xca\x60\x3b\xd1\xe1\xe8\x26\x88\x76\xc5\x6e\x9a\x4f\x38\xfe\xcb\xc4\x26\xe1\x7d\x6f\x91\x54\xc7\xf4\x27\x62\x1c\x26\xad\x73\xe3\x64\xd4\x66\x40\x99\x76\x74\x9e\x3e\xd2\xd1\x39\xc0\x7c\x0e\xdc\xe6\xaf\x5c\x45\xb7\xec\x8c\x94\xa2\xaf\x54\x18\xc1\x80\x50\xc2\xb0\xd9\x45\xc5\x2c\xf5\x4c\x1b\x34\x1d\x90\x3a\x14\x28\x04\x5f\x15\x3e\xbd\x8c\x22\x54\x26\xc3\xbe\x43\x8b\x7a\xbf\x7a\xf3\x2c\xd2\x03\xe4\x20\x04\xe6\x51\xb7\xaf\x69\x62\x6d\x37\xd7\x82\x1c\xee\x0e\x76\x44\xcb\x3e\x1b\xe7\xdb\xc7\x18\xcf\x79\x53\xc0\xf2\x0e\xa3\x74\x99\xd3\x0f\xee\x1a\xa1\xf9\xeb\x83\xf6\xc7\x7b\x41\x51\x9a\xbd\x6c\xfa\xbc\xcd\x73\x59\x2b\xf9\xdb\xc3\xc0\x77\xc9\xe3\xd4\xb7\xdd\x16\x1c\xd8\x4b\xd4\x93\x67\xbf\xeb\x8f\x5c\x33\xe5\xb7\x7d\xde\x85\x68\xc6\xf8\x90\x25\x76\x89\x24\xfe\xcc\x62\x6a\xb8\x3a\xcf\xd0\xee\x7a\x2c\x2a\x1e\x83\x1f\x50\x1e\xfa\x83\x8e\x1f\xe2\xb5\x68\x86\x68\x8d\x25\xa6\xb5\x50\x8b\x72\xf7\x83\x02\x82\x3b\xde\xe5\xf2\xf4\x7c\xd1\xf2\x68\xf5\x3e\x44\x89\x6c\xc5\x5c\x63\x77\x4c\x8b\x4f\x84\x89\xee\xa2\x38\xac\xbb\xb8\x01\xa7\x46\xe9\xda\x62\x02\x15\x69\x14\xe9\x89\xee\x4e\xbd\x8e\x9f\x49\x44\x9d\xb1\xed\xeb\x97\xf1\xeb\xb0\x06\x9a\x39\xd6\x97\xc2\x74\x8e\xb5\x27\x66\xf9\xb2\x21\xc9\x65\xd1\xef\x6a\x96\x34\x75\x1f\xbe\x99\x05\xd8\x37\x53\x3b\x12\x86\xe3\x1a\x68\x53\xc4\xd1\x5f\xf3\xae\x14\x7f\x87\x73\x8e\xea\x23\xdf\x29\x5f\xfc\x2c\x54\x94\x46\xdd\x61\x69\xa3\x61\x2f\xc7\xd2\xcd\x87\x88\xc4\x62\x52\x3e\x39\xbe\xf5\xcf\xbe\x7e\xf8\xfc\x83\x12\x1e\x60\xde\xb2\x66\x81\xd3\x5e\xcf\xd5\xdf\xc3\xfb\x12\xfd\x01\xca\x98\x64\xf6\x2f\xe0\xb6\x27\x1f\xee\xf8\x55\x50\xb0\xeb\x72\x6d\xe7\xcb\x7d\x07\xd6\x47\x45\xf0\x6c\x97\xfe\x9c\x46\xc9\xd1\xcb\xd1\x7f\x02\x00\x00\xff\xff\xba\x18\xe8\xd1\xf6\x28\x00\x00") - -func coredns121JsonBytes() ([]byte, error) { - return bindataRead( - _coredns121Json, - "coredns-1.21.json", - ) -} - -func coredns121Json() (*asset, error) { - bytes, err := coredns121JsonBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "coredns-1.21.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x85, 0x5c, 0xa4, 0xad, 0xa7, 0x1, 0xa9, 0xb8, 0x6b, 0x7c, 0xa2, 0x47, 0xd7, 0x3d, 0x4, 0x21, 0xb, 0x38, 0xff, 0xc1, 0x25, 0x43, 0x9d, 0x68, 0xa9, 0x44, 0x23, 0x8f, 0xcc, 0x66, 0xf0}} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// AssetString returns the asset contents as a string (instead of a []byte). -func AssetString(name string) (string, error) { - data, err := Asset(name) - return string(data), err -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// MustAssetString is like AssetString but panics when Asset would return an -// error. It simplifies safe initialization of global variables. -func MustAssetString(name string) string { - return string(MustAsset(name)) -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetDigest returns the digest of the file with the given name. It returns an -// error if the asset could not be found or the digest could not be loaded. -func AssetDigest(name string) ([sha256.Size]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s can't read by error: %v", name, err) - } - return a.digest, nil - } - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s not found", name) -} - -// Digests returns a map of all known files and their checksums. -func Digests() (map[string][sha256.Size]byte, error) { - mp := make(map[string][sha256.Size]byte, len(_bindata)) - for name := range _bindata { - a, err := _bindata[name]() - if err != nil { - return nil, err - } - mp[name] = a.digest - } - return mp, nil -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "aws-node.yaml": awsNodeYaml, - "coredns-1.17.json": coredns117Json, - "coredns-1.18.json": coredns118Json, - "coredns-1.19.json": coredns119Json, - "coredns-1.20.json": coredns120Json, - "coredns-1.21.json": coredns121Json, -} - -// AssetDebug is true if the assets were built with the debug flag enabled. -const AssetDebug = false - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"}, -// AssetDir("data/img") would return []string{"a.png", "b.png"}, -// AssetDir("foo.txt") and AssetDir("notexist") would return an error, and -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - canonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(canonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} - -var _bintree = &bintree{nil, map[string]*bintree{ - "aws-node.yaml": {awsNodeYaml, map[string]*bintree{}}, - "coredns-1.17.json": {coredns117Json, map[string]*bintree{}}, - "coredns-1.18.json": {coredns118Json, map[string]*bintree{}}, - "coredns-1.19.json": {coredns119Json, map[string]*bintree{}}, - "coredns-1.20.json": {coredns120Json, map[string]*bintree{}}, - "coredns-1.21.json": {coredns121Json, map[string]*bintree{}}, -}} - -// RestoreAsset restores an asset under the given directory. -func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - return os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) -} - -// RestoreAssets restores an asset under the given directory recursively. -func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil -} - -func _filePath(dir, name string) string { - canonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(canonicalName, "/")...)...) -} diff --git a/pkg/addons/default/assets_test.go b/pkg/addons/default/assets_test.go index 2f36dffafa..c3dcbb4cc9 100644 --- a/pkg/addons/default/assets_test.go +++ b/pkg/addons/default/assets_test.go @@ -1,8 +1,6 @@ package defaultaddons import ( - "bytes" - "compress/gzip" "strings" ) @@ -10,7 +8,7 @@ func init() { // we must patch the manifest until we can use fake // clientset that supports CRDs - awsNode := string(MustAsset("aws-node.yaml")) + awsNode := string(awsNodeYaml) awsNodeParts := strings.Split(awsNode, "---\n") nonCRDs := []string{} @@ -23,16 +21,5 @@ func init() { awsNode = strings.Join(nonCRDs, "---\n") - var buf bytes.Buffer - zw := gzip.NewWriter(&buf) - - if _, err := zw.Write([]byte(awsNode)); err != nil { - panic(err) - } - - if err := zw.Close(); err != nil { - panic(err) - } - - _awsNodeYaml = buf.Bytes() + awsNodeYaml = []byte(awsNode) } diff --git a/pkg/addons/default/aws_node.go b/pkg/addons/default/aws_node.go index 835034e026..87784f41ce 100644 --- a/pkg/addons/default/aws_node.go +++ b/pkg/addons/default/aws_node.go @@ -14,6 +14,9 @@ import ( "github.com/weaveworks/eksctl/pkg/addons" "github.com/weaveworks/eksctl/pkg/kubernetes" + + // For go:embed + _ "embed" ) const ( @@ -24,6 +27,9 @@ const ( awsNodeInitImageFormatPrefix = "%s.dkr.ecr.%s.%s/amazon-k8s-cni-init" ) +//go:embed assets/aws-node.yaml +var awsNodeYaml []byte + // DoesAWSNodeSupportMultiArch makes sure awsnode supports ARM nodes func DoesAWSNodeSupportMultiArch(rawClient kubernetes.RawClientInterface, region string) (bool, error) { clusterDaemonSet, err := rawClient.ClientSet().AppsV1().DaemonSets(metav1.NamespaceSystem).Get(context.TODO(), AWSNode, metav1.GetOptions{}) @@ -76,7 +82,7 @@ func UpdateAWSNode(rawClient kubernetes.RawClientInterface, region string, plan } // if DaemonSets is present, go through our list of assets - list, err := LoadAsset(AWSNode, "yaml") + list, err := newList(awsNodeYaml) if err != nil { return false, err } diff --git a/pkg/addons/default/coredns.go b/pkg/addons/default/coredns.go index eed642188b..204f65639b 100644 --- a/pkg/addons/default/coredns.go +++ b/pkg/addons/default/coredns.go @@ -2,6 +2,7 @@ package defaultaddons import ( "context" + "embed" "fmt" "strings" @@ -16,6 +17,9 @@ import ( api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" "github.com/weaveworks/eksctl/pkg/fargate/coredns" "github.com/weaveworks/eksctl/pkg/kubernetes" + + // For go:embed + _ "embed" ) const ( @@ -25,6 +29,9 @@ const ( KubeDNS = "kube-dns" ) +//go:embed assets/coredns*.json +var coreDNSDir embed.FS + func IsCoreDNSUpToDate(rawClient kubernetes.RawClientInterface, region, controlPlaneVersion string) (bool, error) { kubeDNSDeployment, err := rawClient.ClientSet().AppsV1().Deployments(metav1.NamespaceSystem).Get(context.TODO(), CoreDNS, metav1.GetOptions{}) if err != nil { @@ -165,9 +172,12 @@ func loadAssetCoreDNS(controlPlaneVersion string) (*metav1.List, error) { for _, version := range api.SupportedVersions() { if strings.HasPrefix(controlPlaneVersion, version+".") { - return LoadAsset(fmt.Sprintf("%s-%s", CoreDNS, version), "json") + manifest, err := coreDNSDir.ReadFile(fmt.Sprintf("assets/%s-%s.json", CoreDNS, version)) + if err != nil { + return nil, err + } + return newList(manifest) } } - return nil, errors.New("unsupported Kubernetes version") } diff --git a/pkg/addons/default/generate.go b/pkg/addons/default/generate.go deleted file mode 100644 index f05cf36e4a..0000000000 --- a/pkg/addons/default/generate.go +++ /dev/null @@ -1,3 +0,0 @@ -package defaultaddons - -//go:generate ${GOBIN}/go-bindata -pkg ${GOPACKAGE} -prefix assets -nometadata -o assets.go assets diff --git a/pkg/addons/default/helpers.go b/pkg/addons/default/helpers.go index 017260baaf..3f1e1fefaa 100644 --- a/pkg/addons/default/helpers.go +++ b/pkg/addons/default/helpers.go @@ -7,14 +7,10 @@ import ( ) // LoadAsset return embedded manifest as a runtime.Object -func LoadAsset(name, ext string) (*metav1.List, error) { - data, err := Asset(name + "." + ext) - if err != nil { - return nil, errors.Wrapf(err, "decoding embedded manifest for %q", name) - } +func newList(data []byte) (*metav1.List, error) { list, err := kubernetes.NewList(data) if err != nil { - return nil, errors.Wrapf(err, "loading individual resources from manifest for %q", name) + return nil, errors.Wrapf(err, "loading individual resources from manifest") } return list, nil } diff --git a/pkg/addons/device_plugin.go b/pkg/addons/device_plugin.go index 694668ad8b..557a8fc69c 100644 --- a/pkg/addons/device_plugin.go +++ b/pkg/addons/device_plugin.go @@ -8,7 +8,6 @@ import ( "github.com/kris-nova/logger" "github.com/pkg/errors" api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" - "github.com/weaveworks/eksctl/pkg/assetutil" "github.com/weaveworks/eksctl/pkg/kubernetes" appsv1 "k8s.io/api/apps/v1" @@ -16,8 +15,20 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/watch" clientappsv1 "k8s.io/client-go/kubernetes/typed/apps/v1" + + // For go:embed + _ "embed" ) +//go:embed assets/efa-device-plugin.yaml +var efaDevicePluginYaml []byte + +//go:embed assets/neuron-device-plugin.yaml +var neuronDevicePluginYaml []byte + +//go:embed assets/nvidia-device-plugin.yaml +var nvidiaDevicePluginYaml []byte + func useRegionalImage(spec *v1.PodTemplateSpec, region string, account string) error { imageFormat := spec.Spec.Containers[0].Image dnsSuffix, err := awsDNSSuffixForRegion(region) @@ -137,7 +148,7 @@ func (n *NeuronDevicePlugin) PlanMode() bool { } func (n *NeuronDevicePlugin) Manifest() []byte { - return assetutil.MustLoad(neuronDevicePluginYamlBytes) + return neuronDevicePluginYaml } func (n *NeuronDevicePlugin) SetImage(t *v1.PodTemplateSpec) error { @@ -178,7 +189,7 @@ func (n *NvidiaDevicePlugin) SetImage(t *v1.PodTemplateSpec) error { } func (n *NvidiaDevicePlugin) Manifest() []byte { - return assetutil.MustLoad(nvidiaDevicePluginYamlBytes) + return nvidiaDevicePluginYaml } // Deploy deploys the Nvidia device plugin to the specified cluster @@ -202,7 +213,7 @@ func (n *EFADevicePlugin) PlanMode() bool { } func (n *EFADevicePlugin) Manifest() []byte { - return assetutil.MustLoad(efaDevicePluginYamlBytes) + return efaDevicePluginYaml } func (n *EFADevicePlugin) SetImage(t *v1.PodTemplateSpec) error { diff --git a/pkg/addons/generate.go b/pkg/addons/generate.go deleted file mode 100644 index 20e61b6872..0000000000 --- a/pkg/addons/generate.go +++ /dev/null @@ -1,3 +0,0 @@ -package addons - -//go:generate ${GOBIN}/go-bindata -pkg ${GOPACKAGE} -prefix assets -nometadata -o assets.go assets diff --git a/pkg/addons/vpc_controller.go b/pkg/addons/vpc_controller.go index 4af6c3ab57..e61306b020 100644 --- a/pkg/addons/vpc_controller.go +++ b/pkg/addons/vpc_controller.go @@ -21,8 +21,29 @@ import ( apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" + + // For go:embed + _ "embed" ) +//go:embed assets/vpc-admission-webhook-config.yaml +var vpcAdmissionWebhookConfigYaml []byte + +//go:embed assets/vpc-admission-webhook-csr.yaml +var vpcAdmissionWebhookCsrYaml []byte + +//go:embed assets/vpc-admission-webhook-dep.yaml +var vpcAdmissionWebhookDepYaml []byte + +//go:embed assets/vpc-admission-webhook.yaml +var vpcAdmissionWebhookYaml []byte + +//go:embed assets/vpc-resource-controller-dep.yaml +var vpcResourceControllerDepYaml []byte + +//go:embed assets/vpc-resource-controller.yaml +var vpcResourceControllerYaml []byte + const ( vpcControllerNamespace = metav1.NamespaceSystem vpcControllerName = "vpc-resource-controller" @@ -112,7 +133,7 @@ func (v *VPCController) generateCert() error { return errors.Wrap(err, "generating CSR") } - manifest := assetutil.MustLoad(vpcAdmissionWebhookCsrYamlBytes) + manifest := vpcAdmissionWebhookCsrYaml rawExtension, err := kubernetes.NewRawExtension(manifest) if err != nil { return err @@ -258,22 +279,22 @@ func (v *VPCController) deployVPCResourceController() error { return err } } - if err := v.applyResources(assetutil.MustLoad(vpcResourceControllerYamlBytes)); err != nil { + if err := v.applyResources(vpcResourceControllerYaml); err != nil { return err } - return v.applyDeployment(assetutil.MustLoad(vpcResourceControllerDepYamlBytes)) + return v.applyDeployment(vpcResourceControllerDepYaml) } func (v *VPCController) deployVPCWebhook() error { - if err := v.applyResources(assetutil.MustLoad(vpcAdmissionWebhookYamlBytes)); err != nil { + if err := v.applyResources(vpcAdmissionWebhookYaml); err != nil { return err } - if err := v.applyDeployment(assetutil.MustLoad(vpcAdmissionWebhookDepYamlBytes)); err != nil { + if err := v.applyDeployment(vpcAdmissionWebhookDepYaml); err != nil { return err } - manifest := assetutil.MustLoad(vpcAdmissionWebhookConfigYamlBytes) + manifest := vpcAdmissionWebhookConfigYaml rawExtension, err := kubernetes.NewRawExtension(manifest) if err != nil { return err diff --git a/pkg/apis/eksctl.io/v1alpha5/generate.go b/pkg/apis/eksctl.io/v1alpha5/generate.go index 3aa9d55505..2695d4193c 100644 --- a/pkg/apis/eksctl.io/v1alpha5/generate.go +++ b/pkg/apis/eksctl.io/v1alpha5/generate.go @@ -1,4 +1,12 @@ package v1alpha5 +import ( + // For go:embed + _ "embed" +) + //go:generate go run ../../../../cmd/schema assets/schema.json -//go:generate ${GOBIN}/go-bindata -pkg ${GOPACKAGE} -prefix assets -nometadata -o schema.go assets + +//SchemaJSON contains the schema +//go:embed assets/schema.json +var SchemaJSON string diff --git a/pkg/apis/eksctl.io/v1alpha5/schema.go b/pkg/apis/eksctl.io/v1alpha5/schema.go deleted file mode 100644 index cb537e8041..0000000000 --- a/pkg/apis/eksctl.io/v1alpha5/schema.go +++ /dev/null @@ -1,274 +0,0 @@ -// Code generated by go-bindata. DO NOT EDIT. -// sources: -// assets/schema.json (87.655kB) - -package v1alpha5 - -import ( - "bytes" - "compress/gzip" - "crypto/sha256" - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo - digest [sha256.Size]byte -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -func (fi bindataFileInfo) Name() string { - return fi.name -} -func (fi bindataFileInfo) Size() int64 { - return fi.size -} -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} -func (fi bindataFileInfo) IsDir() bool { - return false -} -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _schemaJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfb\x29\x50\xcc\xd6\x6f\xed\x2d\x8e\x68\x39\xbb\xd9\x6c\x36\xa7\x3a\x5a\x52\x1c\x9e\x23\x89\x27\xca\xc9\x5d\x24\xd7\x1a\x9c\x01\x49\xac\x86\xc0\x2c\x80\x91\xc4\xfc\x9c\xfb\xec\x57\x78\xcd\x13\x33\x9c\x97\x6c\x6d\x95\xfe\xb2\x3c\x9c\x69\x34\x1a\x8d\x7e\xa1\xbb\xf1\xdf\x7f\x00\x60\xf4\x47\x86\x56\xa3\xef\xc0\xe8\xab\x49\x80\x56\x98\x60\x81\x29\xe1\x93\xe3\x30\xe6\x02\xb1\x63\x4a\x56\x78\x3d\x1a\xcb\x17\xc5\x2e\x42\xf2\x45\xba\xfc\x17\xf2\x85\x7e\xf6\x47\xee\x6f\xd0\x16\xca\xc7\x1b\x21\xa2\xef\x26\x93\x7f\x71\x4a\x3c\xfd\xf4\x80\xb2\xf5\x24\x60\x70\x25\xbc\x57\x7f\x9b\xe8\x67\x5f\xe9\xef\x32\x43\x8d\xbe\x03\x12\x0f\x00\x46\xd3\x5f\x17\xf1\x92\x20\x71\x06\xa3\x08\x93\x75\xf2\x03\x00\x23\x18\x04\xea\x6d\x18\xce\x19\x8d\x10\x13\x18\xf1\xcc\xef\x95\xd3\xb0\x20\x17\x11\xf2\x47\xe6\xe5\xdf\xc7\x16\xaa\x63\x46\xea\x79\x80\xb8\xcf\x70\x24\x41\xa8\x99\xd1\x30\xe0\x80\x2b\x40\x40\x50\x30\xfd\x15\x6c\x35\x8a\xfc\x00\xcc\x56\x40\x6c\x10\xb8\x45\x3b\x80\x39\x80\x04\x4c\x7f\x1d\x03\xb1\x81\x02\xc0\x90\x53\xb0\x44\x3e\xdd\x22\xae\xde\x21\x70\x8b\x00\xd5\xef\x1b\x68\x54\x6c\x10\xbb\xc7\x1c\x81\x98\xa3\x04\x90\xa0\x80\xa1\x15\x62\xf2\x0f\xb1\xc1\x76\xec\x83\x14\xc3\x07\x0f\x13\x81\xc2\x10\xff\xcb\xdb\x88\x6d\xe8\x3d\x7d\x8c\x03\xb4\x82\x71\x28\x24\x76\xff\xfd\xbb\x5e\x0a\xb3\x10\xa3\xdc\x22\x65\x16\x3d\xaa\x58\x6a\xf8\x5b\xee\xff\x99\x85\xe4\x82\x49\xc6\x19\x67\x7f\x2b\x90\xc6\x87\x04\x2c\x11\xa0\x5b\x2c\x04\x0a\x00\x2e\x13\x23\xff\xf9\x1e\x4a\x37\x00\x97\x40\xfb\x3d\x05\x3c\xf2\x71\xc0\x8a\xb3\x70\xb3\xf0\x1a\x8b\x4d\xbc\x3c\xf0\xe9\xf6\xd3\x3d\x82\x77\xe8\x9e\xb2\x5b\xfe\x09\xdd\x72\x5f\x84\x9f\xa2\xdb\xf5\xa7\x58\xe0\x90\x7f\xc2\x91\xa4\xf7\x6c\x7e\x8e\x84\x7b\x44\x1c\xec\xa1\x5a\xfa\x55\x69\xa3\x44\x6a\x71\x19\x0a\x2e\x58\x80\x24\xde\xd7\x39\xb8\xe3\xdc\xda\x14\x67\x69\xfe\xfb\x61\xbc\x67\x33\xaf\x60\xc8\x51\x9e\x31\x82\x40\x51\x39\xe1\x08\x86\xfe\x1d\x63\x86\x82\x3c\x06\x92\x4b\xcb\xa3\x54\x72\x8f\x10\xd0\xdf\xcc\x69\x88\xfd\x5d\xb3\x15\x98\x91\x10\x13\x74\x42\xfd\x78\x8b\x88\xa8\xe5\x2e\xbd\xf1\x20\x88\x14\x78\x10\x98\x6f\xe4\xb6\xd0\xe3\xb6\x62\xae\xfd\xd0\x9c\x2b\x9d\x9d\xe1\xf4\xf2\x9c\x17\x67\x89\x05\xda\x16\x1f\xd6\xb0\x43\x0e\x78\xe6\x3d\xc8\x18\xdc\xd5\x52\x23\xc4\x5c\x48\xf1\x21\x91\xb0\x62\x64\x36\x3d\xd3\xf3\xc1\x52\xc6\x74\x22\x4b\x0b\xb0\x4e\xfa\x28\x7e\x69\xba\x17\x32\xdf\x45\x88\x6d\x31\xe7\x92\x27\xde\xd0\x98\x04\x90\x95\x18\xa8\x85\x20\x9a\x5e\x9e\x5b\xe4\x33\x80\xc1\xd2\x40\x56\x93\xe0\x9c\xfa\x18\x0a\xd4\x8a\x3c\xad\x00\x3b\x27\xca\x11\xbb\xc3\x3e\x9a\xfa\x3e\x8d\x89\xb8\xa4\x21\x9a\x5e\x9e\x77\xa1\x98\x80\xeb\x12\xf7\xed\x55\xe5\x9d\x98\xb1\xa0\xc2\x5d\x04\xbf\xda\x20\xb0\x45\x02\x06\x50\x40\x45\x84\x28\x0a\x77\x5a\x61\x21\xe0\x6b\x7b\xc7\x10\x47\x32\xd8\x3d\x16\x1b\xe0\x43\x81\xd6\x94\xe1\xdf\xa0\x84\x02\x20\x09\x00\x65\x6b\x48\xcc\x83\x03\x70\x0a\xfd\x0d\x10\x70\x0d\x7c\x4a\xe4\x67\x8a\x21\xa1\x52\x00\xf2\x65\x48\x00\x8d\xf4\x6c\xc1\x1d\x0c\x63\x34\x06\x4b\x2a\x36\xf2\xa5\xfb\x0d\xf6\x37\x60\x47\x63\xa0\x64\x0d\x3a\x68\xb5\xc8\xff\x59\x93\x71\x28\xff\x22\xab\xdc\x21\xc6\x71\x4e\xda\x37\xe6\xb2\x7b\x14\x86\xef\x08\xbd\x27\x73\x23\x00\x9a\x89\xf5\x5f\x4a\x9f\xd5\x71\xcf\x8a\x32\x23\x54\x30\x91\x04\xda\x6e\x29\xc9\x49\x9d\x56\xcb\xb7\x1f\x5a\x47\x6d\xac\x64\x9b\x83\xac\x7b\x77\x77\x9d\xfe\xa8\xf8\x6d\xb4\x47\x36\xd6\x2e\x51\x51\x4a\xb4\xb2\x12\xea\x2d\x75\xb9\x05\x4e\xdf\x2d\x00\x94\xe6\x83\xe4\xe5\x15\x5e\xc7\x4c\xf1\x78\x4b\x0b\xba\x0e\x52\xce\x52\xb1\xee\x52\x48\xe3\xe0\x17\x28\xfc\x4d\x13\x3b\xd6\x6c\xd3\x9f\xe8\x7a\x9d\x77\x77\x6a\x98\xb6\x34\x90\xfd\xba\x23\xbf\x14\x70\x18\x64\x15\x7c\x4a\x04\xc4\x84\x1b\x82\x81\x08\x32\xb8\x45\x02\x31\x0e\x18\x0a\xa1\xb4\x93\x05\x05\x19\x5a\x35\x5d\x94\xd6\x80\xeb\xd7\xa8\x4c\xf8\xca\xa5\x42\x04\x2e\x43\x74\xb5\x8b\xca\xc2\xa5\x99\x35\x35\xce\xff\x8a\x48\xbc\xcd\x2d\x84\x25\x77\x84\x0b\xaf\xca\x87\x71\x80\x85\xeb\xb1\xd8\x20\x22\xb0\x0f\x05\x65\xe5\x9f\x25\xb1\x18\x0d\x43\xc4\xce\x20\x81\x6b\xe4\x78\x45\xba\xe4\x41\x1c\xba\x7e\x82\x61\x58\x7e\xf8\xe7\x51\xee\xc9\x87\x01\x4c\x44\x45\x52\xa9\x41\x42\xbd\x18\x72\x01\x35\xb1\xc1\x0b\x8e\x10\xb8\x4e\x97\x4b\xda\xbf\xfc\xc3\x8b\x49\xcc\xe1\x1a\x4d\x7c\xf9\xfc\x5e\x3e\xf7\x0c\x0f\x7b\x06\xc4\xe4\x2b\xf3\x40\x73\x89\x87\x1e\xe0\x36\x0a\x11\x7f\xf9\xf2\x00\xfc\x0c\x43\x1c\x00\x44\x04\x93\x76\x22\x64\xe8\x3b\xf0\xf1\x46\x52\xfd\x66\xf4\x71\xac\xfe\x94\xb4\x4e\xff\x93\xa1\xb0\x7d\x58\xa2\xab\xfd\x21\xa1\x66\xf2\x79\x18\xda\x3f\xff\x7c\x33\xfa\xd8\x52\xc1\xef\x21\xcc\xf7\x10\x6c\x18\x5a\xfd\x8f\x9b\x51\x67\x82\xdc\x8c\x8e\x0a\xd4\xfd\x7e\x02\x8f\xdc\x54\xfa\xde\xa7\x01\x3a\xfa\xaf\x7f\xc7\x54\xfc\x03\x46\x58\xff\xf1\xfd\x44\x3d\x1d\xe7\x7f\x95\x14\xac\xfd\x3d\x43\xd4\x9a\xf7\x4a\x74\xae\x79\x37\x21\x7d\xdd\xb8\x61\x58\xf3\xeb\x9f\x73\xbf\x1d\x74\x15\xa7\x59\x39\x31\xa4\x2c\x45\xac\x5e\xe6\x59\x8b\xcf\xac\x78\x5b\x89\xda\x16\xbc\x53\xae\xea\x50\xe1\x5e\x6f\xdd\x5a\xad\x59\x0b\xe0\x16\x93\x7c\x14\x21\xc2\x3f\x1b\xc3\xa5\xb9\x5f\x2f\x75\x74\x53\xe9\x5c\x11\x2d\x54\xf1\x86\x86\x52\xcd\xed\x7a\xa7\x88\xb7\xf0\x0c\x9d\xda\x60\xa4\x43\x3c\x07\x98\x4e\xee\x0e\x61\x18\x6d\xe0\x5f\xb3\xa8\x7d\x70\x8f\x7f\x07\x71\x08\x97\x38\xc4\x62\xf7\x2b\x25\x5d\xb5\x55\x1f\x12\xf8\x2e\x1b\xa8\x86\xe8\x65\xd3\xa9\x4e\x5f\x2c\x0a\x3a\x81\xc7\x51\x44\x99\x68\xa2\x16\x5e\xb6\x92\xbf\x8b\x96\x32\x36\x2f\x4c\x0d\x5a\x52\x9e\xba\xa9\xb4\x82\x6c\x0d\x05\x9a\x33\xba\xc2\x61\xe3\x65\x72\x53\xf0\x87\x1c\xac\x5e\x8b\xb7\xc6\xa2\xd9\xaa\xbd\xc5\xf5\xce\xf6\x0f\x3f\xbd\xff\x3f\xe0\xe7\x43\x70\x72\x3a\xbf\x3c\x3d\x9e\x5e\xcd\x2e\xce\xc1\xf9\xc5\xd5\xec\xf8\xf4\x00\x6c\x84\x88\xf8\x77\x93\x4c\x64\x73\x92\x46\x36\x27\x9a\xed\x27\x98\xf3\x18\xf1\xc9\xeb\xbf\x7f\xf3\x35\x78\x8b\x05\x40\x0f\x11\xe5\x88\xe7\x8d\x70\x20\xfd\xa8\x1f\xc2\xf8\x01\xdc\x1d\x5a\x17\x15\x41\x16\x62\xc4\x00\x16\xc8\xbc\x44\x57\x60\x8d\x05\x8d\xda\xb9\x68\x4f\x73\x06\x55\xab\x26\x7f\x6b\xba\x70\x17\x45\x4a\x14\x66\xbe\x0f\xd1\xd7\x0a\xd1\x7b\x1c\x86\xf2\x15\x81\x49\x8c\xa4\x92\x58\xaa\x23\x81\x00\x60\x02\x56\xb1\x88\x19\x32\x38\x83\x28\x84\x84\x8f\x01\x43\x51\x08\x7d\x65\xca\x6c\x90\xa2\x48\x7e\x00\xb8\xa4\x77\xed\x22\x5d\x5f\x14\x51\xe7\x4a\x60\xb8\x6d\x25\xf5\x66\xd3\xb3\xaa\x68\xbd\xb4\x91\xc4\x6e\xce\xe8\x1d\x0e\x10\xeb\x27\x21\x66\x05\x68\xbd\x64\x84\x52\xd6\xbd\xb5\x5b\xde\x6a\xd8\xab\xd8\x6e\xe3\x25\x62\x04\x09\xc4\xcf\x91\x90\xdb\xac\x64\x6e\xd4\x4c\xff\x5d\xc5\xc7\xce\x91\xb6\xca\xda\x0c\xce\x69\x80\xde\x32\x1a\x97\xf7\x55\x2b\xca\x9f\x15\xa0\x0d\x11\x56\x57\x3a\x50\x42\x5c\x2b\xfc\x80\xd2\x4d\x89\x06\x54\xf8\x63\xb2\xf6\x48\xf2\xc6\x4b\xb5\x0f\xae\xcd\xcc\x40\xfa\x43\xf2\x11\xba\xe5\x9e\xf9\x59\x7d\xc7\x87\xd0\x96\x0e\x4c\x6e\x46\x47\x45\xc4\xa5\x8e\x54\xf8\x95\xbe\x2f\x23\x75\x33\x3a\x2a\x4f\xa2\x5a\xc9\x26\xa6\x66\x9b\x2d\x79\x86\x04\xac\x38\x37\x18\x86\x25\x06\xe5\x85\x1f\x28\x03\x98\xac\x28\xdb\xa6\x41\x5d\xeb\xdf\x01\xe5\x40\x3b\x56\xdb\xc5\x22\xed\x74\xe3\xbe\x51\x1b\xf2\x42\x93\x45\x8c\x18\xbe\x83\x02\x99\xd5\x69\xb6\x94\xf3\xfc\x37\x75\x04\x84\x61\x48\xef\x53\x15\x22\xa5\x3e\x04\xab\x38\x0c\x77\x9e\x19\x39\xf1\x7e\x30\x31\x71\x6e\x42\x15\xfb\x81\x0d\xe4\x80\xc6\x42\x9d\xac\x00\x49\x30\x29\x64\x00\xf4\x7d\xc4\xf9\x58\x11\xc5\x82\xd0\xcf\xd4\x51\xfc\x2f\x0b\x60\x22\xb0\x1c\x60\x6e\x7c\xfa\x00\xdc\x61\x08\x7e\x9e\x1f\x03\x44\x82\x88\x62\x22\xda\x19\x2b\x4f\x77\x16\xce\x35\xe5\xc8\x67\x48\xf0\x53\xe2\xb3\x9d\x9d\x43\x83\x65\x5d\x94\x3e\x73\x42\xbf\x8b\xfc\x56\x3b\xfe\xe7\xf9\x71\x57\x7f\xbf\xc6\x71\x75\xc9\xa1\x06\x0a\xad\x60\x4c\xd4\x9a\x04\x85\x39\x8f\x4b\xce\x70\xf5\x36\x72\x8b\xb5\x5a\x35\x58\xe3\xbd\xd4\x7a\xa0\x6e\xdf\xb0\x96\x1b\x0a\x1e\x49\xd9\xd4\x1d\x24\xb6\x02\x01\xc7\x52\x64\x99\x6d\x33\x36\xb6\xa1\x36\xff\x50\xa0\x0f\xcd\x0c\xc1\xc0\x74\x3e\x6b\x1c\x55\xe9\x03\x38\xe5\x0b\x4f\x49\x46\xcf\x9c\xe0\x78\xc6\xec\x4a\x99\x2f\xc7\xe0\xea\x5d\x65\x13\xdb\xa8\x41\x5e\x7e\xa4\xc7\x6b\xa3\x24\x9a\x90\x7b\xc1\x80\xaf\xb2\xcb\xec\xb6\xf8\xe0\x0a\xfd\x9c\x26\xbb\xbd\x41\x28\xdd\x30\xe2\x54\xc9\x92\x2a\x3b\x72\x49\x69\x88\x60\xc5\xfe\x8e\xe2\x65\x88\xfd\xb6\x00\x5a\xed\xeb\x3c\x92\x55\x63\x0f\xc2\x85\xfa\xa4\xc9\x4a\x67\x18\x61\x25\x58\x11\x4b\x64\xa8\x15\xbb\x19\x85\xdb\xf2\x18\xab\x25\x70\xd7\x12\x4b\x47\xa5\xc1\xe2\x5a\xc1\x40\x83\xd3\x07\xe4\xc7\x12\x5c\xb3\xf4\x81\x3a\x15\xcd\x68\x68\x3c\xb6\xe5\x0e\x44\x34\xd0\x09\x1e\x1a\x6f\xa9\x88\xa6\xf3\x19\x3f\x00\x57\x1b\xcc\x81\x7a\x15\x73\x00\x83\x40\x47\x2e\xa5\x07\x97\x9a\xff\xe0\xf2\xcd\xf4\x58\x39\x88\x30\x16\x9b\xe4\x28\xfc\x00\x28\x93\x7a\x4e\x03\x90\xa0\x0d\x24\xde\x1f\x5e\x58\x4f\x3f\xa0\x3e\x3f\x80\xf7\xfc\x00\x6e\xe1\x6f\x94\x28\x97\x1f\xdd\xf2\x49\x08\x05\xe2\x62\x12\x73\xc4\xd6\x31\x0e\xd0\x24\xa2\x81\x87\x2c\x10\x4f\xe2\x73\x20\x17\xa6\x9d\x7d\xf5\x99\x66\x9c\x5a\x69\x43\x4d\xf3\x66\x74\x54\xa6\xe2\xfe\x28\x58\x81\x5d\xe6\x83\x26\xda\x38\x93\x60\x24\x45\x24\xa5\x0c\x06\x92\xc8\x20\x99\x8f\x22\xea\x47\xc3\x15\xa7\xef\x16\xc0\x44\xd8\xc0\xa2\x10\x6d\x34\x5f\x7b\x26\xdc\xd7\xd2\x69\xea\x87\x58\xc9\xc4\x2e\x22\x73\x33\x3a\x72\xe0\x5e\xbd\x18\xf9\xbc\x80\x7e\x3e\x4e\x2a\x35\x16\x39\xa8\x43\xb8\x3c\x06\x4f\xb9\x1f\x14\xa2\xea\x80\x82\x21\x39\x47\x4c\xb2\xf9\x2f\x66\x01\x67\xd3\x33\x60\xb0\x00\x76\x72\x1f\x5e\x4c\x30\xdc\x1a\x48\x16\xd0\xe4\x2b\x45\x48\x4f\xaa\x67\xcf\x9c\x95\x29\xfb\xa6\xdd\xb2\xb6\xc4\x2f\xb3\x8e\x2d\x50\xba\x19\x1d\xb9\xe6\xb5\x77\x75\x7b\x24\x73\x65\x20\x7c\xa6\x0d\x0a\xc3\x10\x58\xab\xd7\x5b\x42\x29\x0f\xd5\x7f\x30\xe2\x86\xa2\x4a\x40\x1a\x93\x47\xaf\xb6\x14\x8f\x29\x7a\xc0\xa2\x57\x2f\xc9\x67\xd3\x33\x2b\xe2\xde\x73\xc4\xde\x2a\x11\xa7\xe5\xed\x3f\x6d\x46\xce\x3f\x0d\x6a\x18\xf1\x0e\x12\x7d\xc8\x39\x36\x13\xdb\x5d\xe6\x74\x33\x3a\xaa\xa0\x5f\x35\x63\xdd\x45\xfe\x25\xe2\x34\x66\x3e\x3a\x4e\x8e\x6c\xdd\xe9\xb5\x45\xe3\xac\xd6\x2f\x57\x89\x46\x26\x0f\x3d\xc9\x8c\xda\x01\x82\xe4\x0c\x4c\x1e\x23\x8b\xf5\x86\x92\x2e\x67\x7a\x5e\x9c\x6c\x33\xfd\x44\x85\x75\xdb\x05\x96\x1f\x77\xf0\x34\x1b\x4e\xb0\x18\x39\x89\x2a\xf7\xfb\xc5\xec\xe4\xb8\x0f\x05\xb5\x4f\x9e\xce\x41\xc2\x03\x91\x71\x1e\x01\xe4\xe0\x1e\x85\xa1\xfc\x77\x76\xb9\x98\x26\x7a\x67\xaa\x38\x08\x1c\x9f\xcf\x40\x14\xc6\x6b\x4c\xda\x45\xe4\x07\x1a\xb3\xa3\xd9\x5e\x10\x72\xcd\x85\xd7\x7e\x9b\xa4\x00\xaf\x85\xe5\xe2\x5a\xd6\x1a\xb5\xdb\x70\x6b\x0d\xe8\x7b\x48\x11\x24\x17\x0b\x0a\xc1\xf0\x32\x16\xc8\xe4\x7d\xfa\x85\x58\x41\xc3\x74\xf5\x3d\xd0\x2a\xbc\x0b\x15\x76\x6d\x52\xfc\x41\x08\x15\x30\x5f\x39\x54\x4f\x81\x47\xc9\x2c\xde\x9b\xcf\x1a\xc2\x25\x0a\x9f\x36\x8a\x5d\xf3\xe0\xe5\x77\x3c\x82\x7e\xf3\x8f\x5b\x6d\xe2\x62\x0a\x6b\x3a\x5c\x99\xbc\x63\x37\x63\x0c\xb8\x39\xb2\x61\xee\x7b\x04\x7c\x48\x74\xe1\x53\x62\xd3\x5d\x28\xe2\x4b\xf6\x55\xf2\xac\x68\xfd\xb5\xdc\x3d\xbd\x87\xab\xd8\x5e\x05\x33\xbc\xc9\x46\xfb\xa2\x75\x32\x69\x21\x59\x7e\x82\xc3\xd6\xcf\x54\x8e\xe2\xe4\xfb\xe7\xba\x9a\x26\x75\x47\xfd\xe3\x3d\x99\x02\x16\x15\xdd\x28\x2c\x17\xea\xc5\x13\xad\x81\x3b\xa7\xda\xe9\x64\xd1\x6a\x39\x77\x50\xf3\x8b\x15\x17\xe9\x70\xf4\x80\x74\xed\x31\xa2\x93\x34\x72\x9d\xce\xf7\xeb\xaa\xda\x23\xf3\x08\xf9\x78\x85\x7d\xbd\xe6\xaa\xac\x15\x13\x2e\x10\x0c\x2c\xd2\x2a\x79\x2b\x91\xbd\xde\x1a\x11\xc4\x94\xf3\x95\x7c\xd1\xee\x40\x7c\x88\x01\x2b\xa9\x71\x41\xc2\x5e\xce\x95\xc6\x6e\x07\xf0\x0a\x50\x12\xee\x92\x9d\x5e\x08\x27\x68\x54\xf8\x86\xc6\x61\x00\x96\x28\xf1\x47\xe5\xf2\xd1\x58\xe8\xff\x63\xb2\x9e\x58\xdd\x6b\x52\x66\xfa\xf0\xd1\x67\x46\xcd\x1d\xe9\x10\x50\xc4\x0d\xf3\xa9\xaa\x54\xec\x42\xc3\x70\xc2\x7f\x52\x65\x71\xd2\xe1\x97\x08\x25\xde\x58\x2f\x29\xd0\x0a\x58\x03\x1b\x75\xb0\xda\xae\x8e\xc6\xa8\xeb\xe8\xb6\xae\x3e\xaa\xb6\xd0\xa9\xaa\x78\x2a\xaf\x38\xf7\x28\x85\x32\x9f\xba\x44\xa5\x4b\x60\x14\x39\x70\x48\x17\x52\x57\xaf\x15\x56\x3b\xad\x50\x84\x24\xe8\x55\x88\xd5\x1e\x7e\x23\x3b\x78\x51\xdc\xe8\x95\xd6\x30\x6b\x19\x37\x6d\xc5\x64\x16\xf8\x80\x0b\xa2\x59\x23\x6b\xc5\x55\xed\xc4\x86\xbd\x24\xf6\xc2\x73\x11\xbc\xe8\xd4\xd7\xd4\xef\x67\x19\x16\xad\xdb\x65\xfe\x3f\x8d\x90\x40\x3e\x82\xc8\x96\x58\x30\x69\xf8\x24\x3c\x8a\xd7\x84\x32\x1d\xcd\xfd\xa8\xc3\xb9\x2d\x4b\x82\xea\x61\xea\x6a\x16\x0d\x38\x29\x63\x79\x84\x90\x40\xdd\xac\x0d\x7b\x14\x03\x47\x4d\x26\x57\xf8\xd4\x6d\xfa\x68\xc6\xe8\x8e\x9f\x0a\x36\xfe\xb2\x00\x1a\x10\xd8\x50\x6e\x0c\x03\xcc\x3b\x21\xdd\x04\xde\xd3\xb7\x00\xd4\x41\xb3\xf4\x7e\xe0\xda\xcc\x46\xc7\x1c\x1d\x07\x10\xad\xa8\xd3\x19\xee\x60\xe5\xe2\x75\xb3\xd6\x45\x6e\x77\x90\x61\x48\x44\x5a\x0b\x78\x78\x70\xf8\x37\x5b\xb5\x77\x78\x70\xf8\x6d\xe6\xef\xbf\xa7\x7f\xbf\x7e\x75\x33\xfa\x08\x5e\x18\x44\x5f\xda\xa7\x87\xad\xcb\xfc\x5c\x58\x64\xeb\xd2\x24\x3a\x35\x65\x6b\x12\xc3\xfa\x9f\xff\x5e\xfb\xf3\xeb\x57\xb9\x9f\xb3\x33\x2a\xbc\x78\x58\x28\x90\xab\x5a\x30\x09\xb3\x49\xfe\xb7\x9c\x58\xb1\x2a\x56\xce\xc6\xf1\xec\xef\xe5\x67\x85\x31\xf4\xb3\xc3\x8a\x34\xf2\x56\xba\xb8\x42\x19\x39\x58\xaf\xb8\x9d\x1f\x33\x16\x99\x54\x3e\x6b\x37\x31\xcc\x64\x73\xb6\x4f\x0a\x6a\x04\xcc\xa5\xce\xcf\xa7\x57\x4d\x6c\xa5\x35\x14\xe8\x1e\xf6\x09\x5f\x54\xec\xcd\x1f\xf1\x7a\x13\xee\xa6\x3a\xc3\x30\x44\x72\x0b\x5a\xa3\x0f\x71\x00\xc1\x46\xfd\x0e\xa0\x7d\x01\x9c\x4f\xaf\x80\xc1\x46\x6d\xd1\x05\x26\x6b\xc7\x77\x5c\x3d\xce\xbe\x5d\xd8\xda\x27\x98\xdb\x01\x03\xfd\x27\x97\x6f\x0f\xbb\xd5\x0b\xb3\xcb\x6f\xcc\x16\xf3\xcc\xc2\xd4\x13\xae\x01\x55\x3f\xf5\x2c\x28\x43\x83\x3c\xac\x1a\x6a\x64\x64\x82\xc6\xa2\x89\x54\x28\xd0\xa0\xb8\xc9\x1d\x80\x00\xb0\xab\x33\xc4\xee\xb7\xac\x3b\xc8\xa6\x95\x44\xf5\xf3\x59\xbd\xfb\x78\x24\xf3\x89\x6b\x03\xea\x3e\x69\x6d\xd2\x2c\x9b\xb9\xcb\xc5\xce\x7b\x4e\x95\xab\x53\x1f\xfb\x02\x6c\xb5\x1c\x76\x12\x65\x2c\x06\x74\x95\x92\xec\x76\x12\x00\x0d\xdd\x74\xaf\x6b\x7b\x76\x53\x03\xc8\xb5\x98\x3f\xcf\x8f\x1b\x9d\xc3\xc4\x82\x4e\xc3\x90\xfa\x50\xa0\xd9\xfc\xee\x9b\x3e\x71\xbf\x69\x0e\xd6\xcf\xdf\x00\xe9\x90\x21\x2e\xb4\x83\x3d\xbf\xfb\x06\x1c\xcf\x4e\x2e\xc1\x32\xa4\xfe\xad\x0e\xd2\x4e\xfe\xfa\x0d\x90\x2b\x84\x1f\x92\x90\x8e\xc4\xbb\x55\x4c\x68\xa8\x41\x9d\x5c\xf9\xf9\x1b\xe9\xf9\xd5\x49\xcf\x35\xa3\x97\x52\xa5\x6b\xe3\xb3\x08\x99\x72\x2d\x55\xc9\x91\x96\x5d\xcc\x67\x49\xee\xe1\x5d\xe4\x7b\x44\x97\x0e\xa8\x1e\x0f\x49\x85\x8d\x7e\xdd\x13\xd4\x13\x1b\x94\xcd\x27\x87\x11\xf6\x74\xfa\xaf\x97\xd4\x67\x0c\x50\xe6\x35\x0c\x22\xb6\xb4\xab\x34\xe1\xea\xcc\x23\xf4\x20\x18\x94\xbc\xf3\xe5\x4e\xe2\x54\x06\x57\x22\x79\x34\x23\xdb\x63\x0e\xb9\xec\x63\x80\x0e\xd6\x07\x00\xea\x5f\xe4\xdb\x56\x48\x18\xc9\x00\x24\x00\xb2\x03\x30\xf0\x36\xb4\x2c\x78\x9a\x2c\xca\x63\xe1\xe0\xa4\x79\x8b\x2e\x92\xd9\xe3\x32\x55\x4c\xb2\xd8\x40\xa6\x2b\x4a\x16\xc8\x8f\x19\x16\x3b\x55\x59\x72\x19\x3b\x0a\xe0\xdb\x4a\x35\x69\xb5\xfa\x30\x94\x56\x51\x10\x00\x6e\xe0\x03\x55\x16\x01\x58\x1c\x9a\xd3\x4b\x12\x80\x15\xa3\x5b\x25\x52\x8c\x81\x92\x58\xbf\x85\x8f\xe4\xbb\x2a\x82\xad\xb0\xd6\xa5\x52\xf9\x57\x4c\x06\xb6\xa9\xbd\x8a\x49\xb6\x34\x51\x67\x7d\xd2\xed\x36\x26\xd8\xcf\x1d\x79\xe5\x12\xc3\xd4\x28\xb9\xef\x0c\x50\xdd\x68\x0d\xf8\xca\x93\x00\x4b\x64\x2d\xad\x00\xdc\x6f\x10\x01\xb1\xb4\xdb\x8c\xef\x9c\x78\xd3\x79\xec\x78\x3b\xeb\xf4\x99\x88\x4d\x88\xd8\x20\x75\x8f\xc0\x86\x2d\x14\x32\x4e\x55\x8d\xbd\xa5\x4b\x4d\xbe\xac\x94\xd3\xf5\x82\xa9\x96\xd6\x6c\x20\x57\x2c\x23\xaa\x8d\xc5\x73\xfb\x2d\x97\x52\x3b\x29\x30\x69\xc5\x84\xbd\x06\x72\x12\x91\x67\x25\x4d\x0f\x8f\xf4\x05\xbc\x85\xfa\xd8\x56\x73\xde\x5c\x32\x5e\x4e\x8c\xbd\x54\xa2\x35\xe5\x56\xc9\x79\x4b\x24\xee\x11\x22\x0e\x76\x55\x6c\xda\x8a\x36\x8f\x83\x81\x9b\x68\x6e\x41\xdd\x83\x7c\x5a\xeb\x20\x4f\x77\x87\x0c\x72\xf2\x60\xf1\xb6\xb5\xba\xab\x01\xe5\x9e\x50\xc9\x6f\x02\x7b\xf7\xe5\xc2\xa5\x8a\x0b\xb8\xdc\xa2\x9d\x8e\x62\x4e\x7f\x35\xb4\x27\x77\x88\x60\x44\x7c\x64\xd2\xd1\x55\x28\xd8\x94\x46\x7f\x78\x31\xb1\x45\xd2\x13\x86\x94\xf4\xf1\x30\xdc\x7a\x90\x04\xde\x5d\xe4\x4f\x5e\x66\x13\x64\xaf\x8d\x74\x7a\xc0\x3a\xa6\xfc\xf3\xfc\x98\x57\xda\x7e\x31\x47\x9e\x7d\x53\x82\xf2\x54\x97\x6e\xcf\x8f\xb9\xa0\x5b\x2f\x77\x30\xf6\xb2\x9d\x5a\xd8\x3b\xc3\x8c\x39\x58\x3b\xb9\x9b\xd1\x51\x96\x16\xba\xea\x3f\x9d\xee\x5e\xab\xb2\xc5\x14\x6f\x46\x47\x0e\xe2\xc9\x11\x3b\xf7\xf5\xca\x37\xb9\x56\x3e\x47\xa5\x90\x71\xf0\x9d\xdb\x68\x6d\xb0\xe3\xda\xd9\x50\xe3\x1a\xaf\xb1\xa0\xa1\xea\xfc\x99\x5a\x1d\x34\xa0\xe3\xbd\x0e\xe9\x12\x86\xb6\xb1\xbc\x6a\x7e\x13\x86\xc0\xdf\xe0\x30\xe8\xe8\x81\x37\x81\x98\x73\xc5\x0b\xad\x93\x06\x6e\x35\x3e\xcc\x69\x9a\x2d\xe0\x8a\x34\x92\xed\xf6\x6f\x15\x0c\xb7\xc5\x31\x68\xd9\xe6\x6c\x7a\xa6\xb2\x74\xfe\xc4\xc1\xf4\xf2\x5c\x6a\x6e\x93\xc9\xca\x62\xa2\x8b\x1a\x29\x11\xd4\xa2\xd6\x6e\x5a\x6d\x61\x57\xd8\x06\x21\xf2\x05\xed\xd9\x5b\x27\xcf\x42\x0b\x03\x73\x08\xb3\x4b\x6b\x38\x9d\xaa\x68\x8d\x6f\x8d\x33\x90\x62\x31\xa4\x50\x1d\xaf\xd9\xe6\x87\x3d\xc8\xd9\x6f\x24\x37\x71\x9d\x39\x54\x2d\xd8\xe7\x4a\x9a\xf9\x31\x63\x88\x88\x42\xf6\x41\xaf\x0d\xd1\x02\x6c\x1b\x53\xe2\x33\xdb\xe2\x16\x57\x93\x00\x67\x98\x3f\xa0\xc0\xa8\x4c\xa0\x3a\x0d\xa8\x64\x67\x7b\x7d\x87\x5a\x4e\xe9\xfa\x98\x05\x55\x17\x81\x10\x4a\x90\xad\xcf\x09\xc6\x4a\x5a\xda\xa0\x80\x8d\xbc\x59\xcf\x4e\xb5\xd1\x32\xad\xb3\xda\x91\xfc\x89\xa0\xec\x5c\xce\x27\x75\x10\xff\x3e\x73\x60\x9e\xa6\x16\x98\x43\xf3\x56\x24\x6f\x01\xa9\xea\xb0\xbd\x95\x7d\x54\x3c\x35\x75\x69\x12\xa7\xe4\xad\x37\x96\x8a\xe7\xaa\x3c\x97\x54\xd9\xcf\x06\xd1\x32\x8f\x1b\x4e\x13\xd2\x4e\xe4\xc0\xa6\x2c\x24\x92\x2e\x11\x7f\x6e\xe1\xda\x4c\xb0\x76\x1c\xa4\xc6\x52\x49\xd4\x4c\x23\x8b\x45\x57\xcf\x34\x36\x5b\xbe\x7c\xe9\x52\x8e\x86\x99\x66\x06\x0a\x33\x90\x70\x4f\x46\xef\x17\xb4\x55\x3b\x01\x35\xc0\x08\x0d\x73\xab\x9a\x94\x4d\x35\xa4\x45\x02\x4e\x07\xe3\xb4\x90\x1d\x90\x12\x8d\xe1\xf7\x10\x19\x55\x65\x5d\x83\x6e\xf0\x1e\xb6\x53\xd3\xed\xdd\xd5\x68\x4a\x36\x77\x18\x3f\x34\x6a\xaf\x12\x3a\xd4\x55\x85\x59\x1a\xc6\x0f\x3f\x84\x79\xf9\xe9\x48\x53\x24\x20\x93\x55\x08\x23\xa9\x7a\x35\x1b\x2a\xd4\x93\xbf\x22\xc8\xb9\x3a\x23\x50\x18\xc8\x27\xaa\xc3\xe6\x92\x52\xc1\x05\x83\x91\x6a\xfc\x65\x22\xa9\x1c\xa1\xa4\x41\xea\x2a\x8c\x1f\xfc\xe0\x00\x53\x55\xa2\x3e\x51\x1a\x3a\x5b\xe2\x46\x89\x52\xe0\xab\x32\xa2\xfb\x72\x21\x9f\x12\xe2\xce\xed\xbe\xc6\x22\x69\xb7\xd9\xcf\x0a\x66\x28\xa2\x1c\x0b\xca\x76\x49\x86\xa1\x49\xbe\x3d\x00\xc7\xfa\xfe\x31\x84\xc5\x06\x31\xf0\x56\x1d\x71\x02\xaa\xfe\x0a\xe1\xb2\xbd\x69\xdc\x67\xac\x8e\x82\x20\x4b\xa8\x71\x91\xd7\x07\x91\x04\xa6\xdd\x24\xd4\x7d\x60\x33\x9d\x5c\xf5\x01\x41\xae\xd5\x39\x54\x0d\x5f\x33\x64\x50\xda\x7a\xa5\xa7\x79\x11\x71\x70\x45\x69\x78\x8b\x05\x78\x61\x7a\xcc\xbe\x6c\x2e\x2e\x1e\x1b\x8f\x92\x4c\xf9\xa1\x20\x2f\x1a\xdc\xa3\xe8\x56\xe0\xad\xef\x4c\x84\x85\x4d\xa9\xa2\xb6\x90\xab\xb0\x5c\xba\x71\x2b\x36\x65\x63\x82\x0e\x34\x4a\xcd\xdd\x84\x6f\x71\xa3\x62\xd9\x04\x68\x39\x92\x54\x23\xa3\xed\xcb\x75\x02\x40\x07\xb6\x2c\x83\x08\xaa\xca\xc8\x24\x07\x41\xf0\xa6\x30\xa8\x14\x4a\xb9\xf6\x32\xb6\x75\xf5\xe9\x49\x3b\x41\x30\xd4\x98\x4e\xb9\x28\x09\x08\xf3\xa6\x6b\x0d\x89\x2e\xec\xdb\xad\x68\x94\xa4\xb8\x29\xdc\x7e\x44\xe1\x16\x58\x40\x00\xab\xc3\x90\x7f\xc5\xc4\x57\x5b\x4f\x1d\x29\xc2\xa4\x05\xb7\x99\xa9\x69\x92\x35\x18\x01\x1f\x03\x21\x27\x75\xa5\xc0\x68\x46\xd9\x4b\xf9\x66\x2b\xaa\x9a\xeb\x47\x2c\x66\x94\x80\x1d\x8d\xd9\x23\xb0\x5b\x9b\x81\x3a\x2a\x1d\x96\x9f\x7d\xca\x95\xe3\x9a\x4d\xfd\xd9\x95\x91\x22\x84\x14\x66\x46\xe6\x4b\xab\x23\xed\xe6\x47\x02\x10\x62\x72\x2b\x7f\xc7\xc2\xa5\x33\x0e\xc0\xf5\x5b\xdd\xd9\x5c\x75\xff\xf9\xf0\x62\xa2\xdb\x67\x7a\xff\x8e\xb1\x7f\xcb\x05\xcc\xb5\x2c\x1b\x52\x7b\xf5\x46\x3c\x73\x1e\x54\xc6\xf9\x66\x74\x94\x9d\x57\x9a\x21\x94\x91\xda\x17\x51\xa3\x34\xc9\x55\xde\xf2\xae\xd9\x2f\xca\x46\xef\xbe\x5f\x5e\x17\xd9\x78\xc0\x2d\x52\x86\xdd\x71\x57\x28\x6a\x7c\x71\x2e\xb7\x96\x4d\x6b\xa6\x39\xa7\x02\x7d\xa7\xab\x6f\x54\xe8\xcf\x34\x5c\x55\x32\x97\x86\x81\x36\x5a\x81\x50\xb7\xf3\x7c\x0e\xae\xff\x2c\x13\xc9\x31\x7e\xa9\xd1\xff\xde\xf8\x90\xb2\xe7\x1a\x87\x86\x8c\xf5\x37\x70\x5e\x3f\xc5\x81\x7f\x33\xfa\xf8\x9d\x6e\x17\x65\xbb\xa1\x25\x7d\xa3\x06\xcd\xb2\x97\x63\xe5\x72\xd8\x9b\x8d\xea\x4e\x57\x97\xc0\x86\x48\x3b\x77\x2f\x02\x25\xe8\x62\x55\xdd\xf2\xb7\xc2\x60\x9a\x9d\x1c\x57\x5f\xf7\xf0\x7b\x69\x90\xaa\x72\xdb\x12\x3d\xf2\xec\x9f\xa4\x37\x20\x7b\xa2\x9f\x24\x52\xa9\xd7\xd2\x7e\x7b\xb5\x77\xa4\x2c\x43\xba\x9c\x6c\x21\x26\x69\xf2\xc0\xeb\xbf\x79\x92\xac\x9e\x1d\xf7\x60\x07\xb7\x61\x0b\x27\xab\xdd\x0c\xca\xbd\xf4\x06\xc1\x57\x65\x3b\x54\x90\x26\x93\x88\x90\x6c\xdb\x7c\xe7\x9c\x06\x0e\x5b\x6b\x87\xcc\x92\x65\x97\x71\x8c\xfe\xd7\xe2\xe2\x7c\xf2\x7f\xa7\x67\x3f\x25\xad\x71\xf8\x18\xf0\xd8\xdf\x00\xc8\x81\x4a\x54\x70\x5c\x0b\x46\x99\xfb\xda\xd3\xa6\xeb\xf2\x78\x08\xd4\xb8\x71\x33\x69\x45\x13\xdf\x19\x37\xaf\xbc\x9e\x33\x8a\xa7\xcc\xdf\x60\x81\x7c\x11\xb3\x3e\x62\xef\x78\xfe\x1e\x64\x41\xd9\x03\xae\xd3\xe3\xd7\xda\xbe\x27\x52\xb6\xef\x22\x64\xaf\xde\x2b\x49\xc8\x87\x6f\xbf\xf9\xe7\x37\x7f\xb9\x19\x7d\x54\xf7\x0a\x6e\x83\xf4\x6f\xb6\x55\x7f\xb7\x92\x91\x3d\xf1\xc9\x8a\x53\x8d\x58\xbe\x28\x28\x77\xeb\x9e\xc4\xb5\xe6\x67\x89\x7e\xee\xe7\x26\x62\x57\x0f\x5a\x2c\x03\x52\x43\x95\x1e\xca\x01\xf6\x5f\x2f\xb3\x8e\xaa\xcf\xaa\x25\x29\x8b\xd7\x67\x96\x7a\xd2\xea\x76\x2f\xe6\xa4\x87\xc4\xdb\x25\x62\x92\xaa\x6f\xe7\xef\xf9\x01\x98\x09\xd5\xc8\x6b\xa9\xce\x80\xa4\xc6\x7f\x95\x89\x15\x13\x4a\xbc\xb7\xf3\xf7\x79\xc2\xb7\x4c\xde\x7d\x84\xe1\x9d\x64\xda\xa2\x2d\xed\xd5\x97\x28\x8f\xa8\x06\x07\xae\x36\x08\xc4\x04\x0b\x9b\x4c\xac\x0c\xdc\xb7\xf8\x4d\x0f\x12\xec\x83\xec\x9c\xdd\xdd\xf1\xfc\xfd\xa3\x70\x81\x06\x3c\xc4\x82\x6a\x48\x1d\xad\x8c\x22\x1a\x76\x39\x8b\xfb\x60\x5c\x2d\x03\x07\xf1\x0d\xb4\x26\xc8\x09\x1b\x7b\xe0\x66\xad\xea\x96\x5a\xa5\x1e\x56\x4e\x13\x54\xdd\x05\xd5\x40\x21\x98\x40\xf8\x6c\x7e\xf7\x97\xe3\xd9\xc9\x65\x1f\x85\x30\x3b\xb9\x04\x0c\x92\x75\x72\xb8\x86\x18\x02\x1f\x6d\x9b\x92\xf9\x47\x25\x69\xd5\xe5\xed\x6b\x82\x82\x76\xc2\xdd\x09\x5b\x0b\xdd\x64\x00\x23\x6c\x0b\xc3\x74\xe4\xab\x22\x5d\x06\x61\x92\xf4\xae\x67\xe3\x37\xa5\xc9\xa0\xad\x99\xa4\x09\xac\x1c\x93\xfc\x04\x63\xe2\x6f\xae\xd0\x36\x0a\xf3\x35\x94\x15\x4e\x14\x0e\x9a\xbb\x50\x7b\x2b\x68\xea\x18\x47\x23\x06\x84\xc1\x0c\xcc\x4e\x5a\xf1\x86\xe3\x73\xb7\x24\xec\xdd\x5d\xa1\x38\x92\x81\x08\x4e\x32\x82\x38\x5b\x3f\x12\x56\xbc\x7f\x75\x71\x72\x61\x6f\xd3\x04\x7f\x34\x5f\x8f\xc1\x1f\x7f\x52\x9d\xad\x7b\x4d\xfe\x91\x50\xea\xb8\x89\xf2\x19\xc6\x77\x55\xb7\xdf\xd6\x6d\xa5\x1c\x0b\x97\x2e\x9e\x1b\x38\xb7\x15\x6e\x71\xef\x7e\x7c\x3b\x70\xad\xf3\xb7\xc1\xf4\x6c\x96\xb9\xda\x5b\xe7\x74\xc3\x2d\x4e\x2f\x56\x18\x83\x8f\x30\x16\xd4\xe3\x7c\xfb\xd1\xfc\xfd\x71\x2c\x5d\x81\x8f\x5c\x40\x81\xfd\x76\x06\xb0\x1d\xbe\x7c\xc1\x6b\x79\xe8\x9b\xd1\x51\x06\x49\xe9\xbc\xd9\xba\x78\x8b\x50\xa1\xb7\x86\x7c\x9c\x3c\xa2\xcc\x3c\xd5\x68\x5a\x23\xd7\xb9\xeb\xe0\x16\xff\x00\xb7\xb8\xba\xb5\x5f\xf7\x08\x8b\xee\xb0\xfd\x13\x26\xf1\xc3\xeb\x72\xe7\x92\xf7\xcb\x98\x88\xf8\xf5\xab\x57\x7f\xb1\x1d\x4e\xf4\x93\xc3\x6f\xd3\x27\x6f\xa8\x10\x21\x62\xd4\xbf\x45\xc9\xfd\xe8\xbf\x60\x12\xd0\x7b\xbe\x50\xa5\x9c\xaf\x5f\x1d\xfe\xfd\x98\x32\xd5\xa9\x5a\x5d\x29\x5d\xf9\xd6\x0f\x71\x18\xee\x7b\xeb\xd5\x5f\x8a\xb0\x86\x6d\xb6\x90\x25\x48\xa3\x16\x28\x29\x8d\x6a\x1a\xaa\xa4\x64\xab\x79\x29\x4b\xc9\x9a\xd7\xea\x89\xdb\xe6\xc3\x1c\xbd\x9b\x7f\x58\x58\x82\x86\xfd\x5f\xb2\x84\x6d\xe2\xcb\x55\xbe\x0f\x40\x86\x2f\xdd\xbf\x48\x42\x17\x7f\xc9\x52\xb7\xf8\x5b\x3d\x49\xf7\xbe\x9d\xa3\xe3\x9e\xb7\x0b\xc4\xdb\xef\x81\x42\xbe\x5e\xc4\x3c\x42\x24\x98\x33\xea\x23\xce\x1f\xf9\xee\xee\x5a\xe9\x8c\x10\xb8\x66\x28\x44\x77\x90\x08\x95\x3b\x1a\x50\x9f\xd7\x5f\xa1\x31\xfd\x65\xa1\x3a\x9a\xfe\x60\x53\x64\x1c\x97\x4f\xdc\x73\x2f\xe9\x0a\xef\xc5\x51\x00\x05\xd2\xad\x99\xd5\xe5\x13\x5f\xf9\x2b\x92\xfe\xce\x73\x2f\x78\x8c\x86\x21\x26\x6b\xfd\xcc\xe3\x9a\x52\x91\xa5\x54\x9f\x2a\xf6\x27\x3b\xa9\x9b\xd1\x51\x69\x0d\xaa\x8b\xe1\x3f\xef\xcd\xef\xb5\xa6\x1f\xde\x62\xa1\xef\x1d\xd5\x39\x71\xb6\x15\xee\xf4\xd7\x54\xc7\x4b\x25\xc9\x7d\x18\xaa\xda\xae\xdf\x28\x41\x1e\xbc\x87\x0c\x79\x5a\xa7\xea\x1f\xda\xad\xaa\x1e\xb6\xa4\xd1\x9b\x0c\x64\x6e\x22\x2d\x61\x5b\x4d\xed\x65\x56\xca\x34\x3a\x3e\x4c\x0c\xb1\x4a\x01\x55\x1d\x4d\x48\x32\x87\x57\x94\x81\xec\xf7\x1d\xca\x48\x9b\x43\x75\x4e\x3c\x40\x5c\x5a\x8e\xc7\x30\x82\x3e\x16\x95\x96\x8a\x8d\x96\xb8\x61\xe8\x2a\xec\xd9\xd9\xc9\xe2\xee\xb0\x4f\xe1\xbf\xb1\x63\x79\xda\x51\xc4\x98\xf0\x49\x7f\x44\xdb\xa4\xd2\xa4\xf1\xaa\x21\x5f\x03\x41\x6f\x11\x69\x47\xb6\x21\x87\x4a\xb5\x65\x6a\xb6\x57\xd0\x68\x4e\x03\x09\xa8\x0f\x91\x4c\x21\xb5\xba\x96\xe3\xec\x64\x91\x4e\x40\x45\x07\x88\x69\x5b\x98\x75\x89\x23\x1a\xb4\x23\xce\x10\x43\x34\x21\x0a\x5a\xf2\x8b\x48\xe0\x2d\xfe\x0d\x55\x3a\xd1\x6d\x6e\xc6\xb9\x3e\x7d\xb3\x50\x01\x80\xad\xb9\x16\x6f\xaf\x8a\x3b\x3d\x7e\x5d\x56\x01\x68\xc9\x3d\x6a\xf1\xea\x70\x37\x94\x45\xa7\xb1\x4e\x6a\x88\xc5\xcd\xe8\xa8\x38\xc1\x9a\x66\x2a\x2b\x78\xaa\x2f\xf1\xed\x43\x59\xdd\x45\xc1\xc4\x60\xe1\x03\xde\xc6\x5b\x5d\xbf\x8f\x82\x4c\x14\xf3\xf4\x87\xa9\x67\x6f\x0c\xb6\xd5\x3f\x3e\x64\xaa\x6a\xcf\x34\x7e\x50\xb7\x28\x61\x6e\x7a\x44\xb4\x22\xe7\x63\xe1\xe0\x26\x9b\x02\x71\x82\x04\xc4\x21\x0a\xce\x28\xc1\x82\x2a\x45\xda\x83\x88\x7a\x1d\x54\x50\x33\x30\x80\xc1\x36\x85\xdc\x86\x16\x7b\x40\x39\xa7\x84\xe1\xb6\xa5\x4a\x9b\x4d\xcf\x2a\x40\x99\x98\x6c\x83\xee\xfd\xb5\xdf\xcf\x55\x33\xa8\x3e\x10\x1c\x07\x7f\x35\x33\x2b\x1d\x17\x36\xd3\xd3\x36\x25\x44\x2a\x54\x67\x48\xba\xa3\xa6\xde\x0f\xb7\x76\xee\x57\xfb\x93\x36\xf6\x7e\xff\xe5\xcc\xc9\x94\x0c\x10\xd8\x1b\x4a\xf2\x87\x55\x1d\xa9\x5a\x09\xce\x49\x8c\x2f\x5f\x14\xd5\xe0\xca\xa9\x8a\xa8\x35\xa8\xe6\xf4\x42\xa4\xbb\xe1\x42\x90\xb4\xb5\x42\x31\x4a\x6a\xcc\x1f\x5b\x8a\x99\xdc\xf0\xdf\x75\x91\xba\x0c\xe5\xa4\xce\x16\x3e\xcc\x69\xc0\xe7\x88\x49\xb9\xd5\xc9\x70\xdd\xc2\x87\x05\xfe\xad\xe3\xb7\x98\x74\xfe\xb6\xeb\x45\x5d\xf4\x0e\x31\x86\x03\x94\x24\x6d\x1f\xd3\xed\x16\x92\x3e\x07\x10\x17\x06\x64\xd2\xc2\xfc\x4f\x3c\xcd\xa8\x8f\x54\xb9\x88\x7a\xbd\xd5\x72\x27\x40\x1d\x3d\xcc\xab\xe0\x3b\x27\x9c\x94\x10\x37\xcc\xbf\x4f\x5e\x6f\x7e\xaa\x9b\x56\x29\xeb\x0e\x57\x98\x98\xd2\x38\x6d\x33\xa4\x37\x92\xf0\x08\xde\xb7\x3d\xbb\xeb\x39\x94\x9b\x26\xac\xb4\xfe\x5f\x4e\x98\xeb\x9b\x8c\x91\xc4\x7a\x45\x19\x2a\x2c\xad\x95\xc3\x89\x73\xd5\x25\x55\xb6\xe3\x10\x15\xb4\x53\x8d\xf2\xce\x13\xc7\x65\x00\xb3\xee\xda\x76\xdf\x4b\xdd\xa1\xda\xbe\x3e\xe6\x75\xcf\x94\x47\x7b\x2b\xca\x3c\xc5\xc1\x30\xf4\x12\x91\xa7\x5b\x3f\x75\x13\xb6\x06\xaf\x46\x1d\x78\x1a\x21\x73\x33\x3a\x2a\xcf\x51\x35\xfc\xa9\x41\x32\xa3\xdf\x94\x03\x58\x55\xde\x10\x22\xc8\xd1\xcf\xbd\xcf\x27\x55\x51\xfc\xd9\x2c\x39\xd4\xb3\x19\x50\xef\x12\x7f\x09\x05\xea\x05\xad\x64\x5a\x11\xb4\x2d\x6c\xe7\x4c\x73\x3d\x85\x1a\xd6\x7c\x26\x06\xf9\xe2\x6d\x55\x67\xaf\x88\x96\x64\x63\x17\xff\x0e\x02\x09\xa9\x23\xc3\x35\x03\xd2\x8c\x21\x38\xdf\xb4\xa5\xcd\xe2\xc7\xfa\x29\xa6\xed\xb1\x39\xdf\xd8\xbe\x73\xda\xc8\xc0\xbc\xeb\x94\x9b\x02\x75\x4f\xf2\x0b\xf7\x1c\xd1\xa1\xd5\x72\x88\xb4\x4b\xb7\xd2\x7d\xb0\x9c\x04\x78\x52\x5d\x3a\xa6\x51\x14\x62\xd3\x5e\x43\xee\xf4\x34\xc0\x0c\xde\xa6\x4d\x2f\x69\x29\xa3\x92\x83\x17\x49\x7b\xcb\x97\x63\x50\x00\x23\xa5\xc3\xb9\x65\x83\xa4\x57\x47\x0d\x2c\x0b\xa9\x15\xf5\x9f\x34\xee\x0d\x5c\x1c\x01\x5d\x1d\x97\x5b\xf5\x6b\x4a\x04\xc1\x15\xcc\x75\x8d\xec\xbe\x3d\x34\x52\xaa\x92\x23\x8a\xc2\x9d\x9d\x73\x37\x49\xb1\x17\x98\x93\x2e\xfa\x08\xa9\x94\xca\xd6\x84\x0c\xef\xb3\x9f\x36\x14\x8c\x1b\x7a\xaf\x94\x97\xfa\x14\x24\xa0\x5a\x66\xad\x36\x02\xe8\x9c\xee\x1d\x0d\xe3\x2d\x3a\x25\x3e\xdb\x45\x62\x7f\xc4\xb2\x06\xc6\xec\x62\x5e\x19\x5d\xaf\xf5\xc9\xf4\xe7\xef\xb6\xfc\x1d\xda\xcd\x4e\xba\x78\x67\x1a\x42\xd7\xd0\x98\xfe\xba\x89\x4b\x59\xb7\xa6\x6b\xbc\x86\xcb\x9d\x68\x19\x43\xa9\xf8\x2a\xdd\xbf\xdf\xbe\xaa\xc1\xf9\x6a\xc3\x68\xbc\xde\x44\x71\xa5\x25\xd2\x80\xf0\x0d\x62\x5a\x1d\xd2\x64\xd6\x91\xca\x8e\xc1\x1c\xbc\x35\x57\xa3\xcc\x63\x16\x51\x8e\xc0\x62\x71\x32\xd6\x6f\x7c\x5d\xfd\x86\x71\xcf\x4c\xb2\xb5\xb6\xf5\x6c\xd5\xfe\x06\xaf\x37\x40\x24\x53\x2f\x64\xe0\x60\x7a\x68\xc0\xaa\x9a\x1d\x69\x36\xa2\x00\x48\xe6\x4c\x46\xe6\xbe\x7d\xe5\x98\x86\x01\xf8\xf1\xc4\x3c\x16\xf6\x71\x4a\x57\x90\x9c\x92\xc8\xd7\x86\x4d\x9c\x59\x47\x85\x7c\x99\x2a\x62\xe5\x3f\xfa\xba\xc9\x47\x1d\xe9\x97\x1d\x09\xd3\xc3\xd2\x48\x6e\x92\x66\xbf\xe2\x7e\xf9\xab\x94\xca\xb9\x37\x45\xf9\xcd\x86\x84\xcf\xa8\xb7\x75\xf4\x75\x93\xdc\x98\x75\x54\x4a\x89\x29\x7e\x29\xb5\x1f\x3d\x2c\x3e\xe2\x7e\xf9\x91\x78\x94\xeb\x91\xd2\x9c\xb5\xaa\xc0\x73\x6d\x8e\x82\xc3\xc8\xad\x0e\xff\x57\x1d\x2c\xd4\x1c\x4f\x3b\x02\x70\x8e\x78\x9e\x5b\xac\x16\xbc\x8c\x72\x2c\xb8\x36\x50\x50\xb4\x5e\x0b\x07\x2c\x79\x12\x8e\xaa\x1d\xbf\xea\x08\xe6\x9e\xe4\xa1\xaa\x73\x53\xb7\x28\x75\xeb\xa5\x1a\x95\x5b\xad\x0a\xdd\x3a\xb6\x4e\x0d\xec\x8b\x56\x35\x09\x69\x56\xe6\x17\x54\x1f\xaa\x3b\x03\x87\xee\x23\xd1\xba\x13\xa5\xcc\x6f\x4b\x77\x6e\x47\xf5\x29\x61\xe5\x69\x4b\xd1\x67\x2f\xdb\xc0\x55\xd6\x5f\xf5\x81\x40\x75\x1c\xc5\xfc\xd0\x2f\x63\x9f\xa1\x88\x21\x8e\x88\xbe\xd8\xe5\xf4\xdd\xc2\xcb\xf6\xe4\xd7\xbe\x81\xca\x9d\x56\x2a\x46\xda\x79\x52\xae\x4b\xb7\x22\x8a\xa4\x90\xc7\x48\x17\x08\x06\x4a\xcc\xdf\xab\xd0\x3f\x63\x19\x02\xef\xcf\xd1\x78\x24\x04\xd4\xf8\x49\x62\x35\x12\x0c\xfb\xfc\x98\x86\x72\xfd\xf3\x51\xa8\x8a\xcc\xea\x35\x83\x24\x0e\xa1\xdc\xd5\xcd\x13\xac\xb3\x1f\x75\xb9\x72\x43\xa3\xf9\xa8\x31\x83\x8e\x3a\x24\x3b\x33\x07\xc6\x83\x30\xa3\xea\x96\xb4\xd4\xd7\x87\x5b\x0f\x57\xfb\x1b\x63\xd5\xe7\xeb\xda\xcf\x5d\xbf\x3e\x5c\x82\x63\xba\x9c\x1e\xe4\x9e\x99\x93\x9f\x30\x4b\x21\x3d\xa4\xd1\x15\x9a\x35\xd3\x18\x34\x8d\xb1\x09\xea\x37\xa3\x23\x07\xe5\xca\x1d\x38\x9e\xeb\x0e\x9e\xeb\x0e\x9e\xeb\x0e\x9e\xeb\x0e\x9e\xeb\x0e\x9e\x7e\xdd\x41\x9d\x45\x03\x5a\xc7\x57\xcb\xd0\x5a\x5b\x13\x7b\x3c\x9b\xe7\xb2\x88\xe7\xb2\x88\xe7\xb2\x88\x86\xab\xfa\x5c\x16\xd1\x88\x4c\x3d\xcb\x22\xfc\x10\x72\x8e\xfd\x9f\x28\x0c\xde\xc0\x50\xba\xf1\xec\x1c\x6e\xbf\x20\xb7\x4d\xcd\x05\x90\x08\xa8\x3e\xd4\x4b\x83\x14\x37\xed\x25\x63\xd5\x98\x5a\xfb\x13\xed\xcf\xa8\x5a\x03\xaf\xa0\x99\xca\xbc\x39\x39\xaf\x3c\x80\x69\x60\x77\x5e\x1f\x6b\x1b\x19\x06\x01\x43\xbc\xfa\x86\x2c\x7b\x4f\x94\x1e\xd3\x0b\x08\xf7\xcc\x27\x2f\xd3\xce\xba\x27\xe7\x0b\x10\x52\x7a\x9b\x8f\xbb\xed\xa7\xc7\xde\xd4\x99\xea\xd1\x6f\x46\x47\xf9\x19\xa8\x3c\x19\x27\x46\x6e\x22\x5a\x4d\x7f\x19\x13\x81\x7b\x5d\x37\x94\xbd\xab\x80\x69\x68\xe0\xc5\xf1\xe5\xec\x65\x36\xd1\x32\x19\x8f\xdb\xce\xaf\x24\x1f\x8b\x6c\x77\x27\x42\xdb\x71\xdc\x34\x88\xe2\x63\x86\x02\x5c\x3e\x18\x6e\x31\xfb\xcc\x61\xe4\xf5\xd5\xd7\xe0\x3d\x09\xa5\xe0\x44\x41\xb7\x92\x90\x65\xcc\xb8\x80\xcb\x10\x79\x11\x62\xca\x57\x26\x3e\xf2\x92\x13\x70\x2f\xb6\xe0\xbd\x2d\x0d\x90\x0e\x0a\x8c\xc1\x9d\x72\x1e\x28\x09\x77\x8a\x06\x57\x9e\xc4\x3f\x3d\x37\xef\x7a\xb8\xda\xaf\xae\xa4\xc3\x54\x6e\x46\x47\x59\x12\x6a\xdf\x75\xdf\xe4\x9c\x4b\xfb\x5c\x6e\xf6\x5c\x6e\xf6\x5c\x6e\xf6\x5c\x6e\x56\x41\xd9\xe7\x72\xb3\xe7\x72\xb3\xaa\x53\xe1\xe7\x72\xb3\xff\xd0\x72\x33\x7e\x82\xb9\x0e\x0c\x38\x42\x51\xfb\x58\xc3\x09\xc3\x39\xdc\x6d\xbc\x44\x21\x12\xa7\xea\x3e\xd6\x16\x89\x73\x85\x5e\xad\x0d\x9c\x13\xfc\x1b\x02\x1f\xcd\x70\x1f\x93\xfe\xb8\xb9\xc8\x3f\xfe\x0d\x93\xb5\x27\x36\xc8\x33\xef\x4d\xda\xc9\xf4\x8a\x03\x85\x32\xd8\xc4\xdf\x90\x48\xe9\x20\xac\xf9\xc9\xc6\xa1\xd3\x26\xb5\xff\xb1\x85\x70\xcf\xa5\x5e\xcf\xa5\x5e\xcf\xa5\x5e\xcf\xa5\x5e\xcf\xa5\x5e\xff\xc1\xa5\x5e\x8f\x54\x00\xf5\x5c\x2f\xf4\x5c\x2f\xf4\x5c\x2f\xd4\x94\xfa\x4f\x1a\xf7\xce\xf5\x42\xee\x1d\xaf\xdf\xfd\x45\xaa\x8f\x3d\x55\x13\x4f\xa0\xe0\x47\x40\xb6\x46\x42\xad\xc1\xf4\xf2\xfc\x29\x9c\x33\x69\x8c\x8c\xfd\x32\xec\x29\x53\x23\xd0\x4e\x32\x3d\xd7\x45\xd5\x99\x30\x35\x30\x9e\xeb\xa2\x9e\xeb\xa2\x9e\xeb\xa2\x9e\xeb\xa2\x9e\xeb\xa2\x9e\xeb\xa2\xc0\x73\x5d\x14\x78\xae\x8b\xca\x90\xed\x8b\xd4\x45\xe5\x43\xfa\xf9\x45\x2e\xe7\x9c\x66\x7e\xcf\xa4\x87\x64\x9f\x56\x65\x6c\xd5\x18\xd9\x65\xc7\xa2\xca\xd4\xcc\x0d\x94\xa4\x39\xd5\x9f\x3e\x64\xbf\x29\x66\xf5\x98\x9f\x86\xb8\x77\x27\x7f\x8b\x65\x9a\x83\x09\xc4\x06\x0a\x75\x1f\x4c\xe2\x63\xab\xbb\x29\xcb\x5e\x4d\xb3\x3b\x79\xba\x8f\xa3\x86\x29\x15\x92\xbc\x71\xe7\x16\x56\x16\x8a\x68\xde\x9a\x06\x5b\x4c\xd2\x74\xe8\x2e\x06\xb1\x4d\x08\x1c\xfc\x78\x28\xb9\x96\x06\x92\x1d\xb8\xce\xee\x91\x24\x09\xd1\x79\x8d\x62\xf6\x4d\x8f\xf2\xdc\xff\x27\x5f\x65\x06\xf1\xe8\xca\xb3\x90\xda\xf9\xfd\x39\xd4\x6a\xef\x48\xec\x84\xcc\xcd\xe8\xc8\x39\xdd\xc2\xa9\x53\x2b\x0d\xec\x5c\x6f\xd7\x32\x0e\xb8\x97\x54\x54\x39\xc7\xe7\xa5\xa4\xd1\x25\x94\x96\x9a\xcb\x15\x6c\xb6\x8d\x3a\x0d\xe1\xde\x41\xb3\xe9\x59\x93\x8d\x03\x85\x80\xfe\x66\xae\x72\xb1\x1f\x3d\xb6\xe0\xdc\x71\xa9\x7d\xa3\xee\xdd\x9e\x5e\x9e\xf7\x39\x4f\xbe\xa4\x83\x80\xe8\x9b\x54\x20\x61\xcc\x11\xdb\x62\x2e\x4d\x6e\xfe\x86\xc6\x24\x80\x7b\x2f\xd3\x73\x82\xbc\xc7\x62\x33\x0d\x02\x4a\xe6\xf6\x0e\xcc\xd6\x09\x14\xf9\xcf\x3b\x6e\xb9\x12\xa7\xd4\xaf\x61\xcd\xda\xd4\xd1\xbc\x05\x2d\x6b\x69\x34\xe0\xbe\x57\xa9\x67\xd3\xb3\xac\x56\xa3\x2b\x00\xd3\x3d\xd8\x72\x93\xef\x87\x57\xb9\xa3\xab\xf8\xa0\x7a\x7b\x87\xcb\x19\x59\x33\xc4\x2b\xb3\x65\x6b\xb5\x21\x8c\xa2\x33\x54\x3e\x44\xe9\x92\x0f\xb7\x8a\xc3\xd0\x1e\x6d\x08\x0a\xa6\x06\x72\xab\x13\xc0\x7a\x50\x75\x33\x98\x33\x74\x87\xd1\xfd\xe3\x4d\x04\xd8\x11\x86\x9b\x50\x02\xd2\x3d\xb1\x58\xd0\x85\x0f\xc3\xfd\x76\x4e\x93\x49\x25\x77\xec\xea\x7c\x5d\x9b\xbb\x6e\x0b\x47\xda\x1e\xd5\x36\x86\xea\x9c\x9a\x8f\x98\xd0\x37\x9a\x0d\x32\x37\xa9\x54\x8d\xbf\xad\x8c\xcf\x20\x00\x0c\xf9\x94\x05\x8a\xd8\x97\x34\x16\x08\xfc\xf5\x6b\x80\x09\xa0\x52\xea\xa9\x83\x27\x1a\xde\xe9\x0b\xd8\x4f\xce\x17\xaf\x0e\x81\xbf\x81\x61\x88\xc8\x1a\x1d\x80\x33\xca\x10\xc0\x24\x2d\x89\x36\x81\x9a\x95\x14\x4b\xe0\x7a\x83\x18\x4a\xed\x38\x39\x13\xd3\x97\x80\x1d\x60\xaa\x72\x2e\x27\x39\x05\x3f\x81\xfe\x16\x4d\x02\xc2\x5f\x1d\x4e\x98\x44\xe5\xaf\x5f\x4f\xbe\xe2\x48\x78\x71\xe4\x41\x0f\xc3\xad\xc7\x68\x88\xba\xe5\x7c\x7e\xce\x89\x97\xcd\xc6\xa1\xe6\x7e\x33\x3a\x92\x44\xad\xce\x51\x52\x25\xea\xbf\x40\xe1\xef\x95\x53\xce\xcf\xd1\x72\xaf\x6c\x6c\xca\x65\x04\xdd\x83\xd3\x37\x0b\x70\xbc\x98\x81\x17\xa7\x21\xe4\x02\xfb\xe0\x4d\x48\xfd\x5b\xb0\x10\x92\x7c\x89\xad\xaa\xfe\x0f\xd7\x08\xcc\x88\x40\x6c\x05\x7d\xf4\x12\x04\x0c\xdf\x75\xdc\x68\x83\x0d\xee\xa6\xd0\xaa\x9b\xf6\x40\x0f\x02\x31\x02\xc3\x9a\xa2\x9f\x26\x14\x86\x81\xb1\x8c\x2d\x3c\x2f\x20\x1c\x44\x8c\xfe\x0b\xf9\x22\xb9\x19\x5c\x49\x18\x5d\xe7\x9b\xb0\x76\x2b\x5a\xf6\x18\xc6\x39\xfb\x15\xaf\x4c\x2a\xad\xa5\x1a\xde\xc2\x35\x7a\x13\xe3\x30\xe8\x27\xfe\x54\x5a\xb2\xc6\x57\xe9\x97\xd3\xe3\xcb\x94\x2f\x52\x5e\xb8\x44\x6b\xcc\x05\xdb\xbd\x34\x0a\xe8\x00\x5c\x6d\x30\x07\x98\x83\x98\xa3\x55\x1c\x2a\x00\x4b\x89\x0e\x26\xeb\xb1\xfa\x9f\xb9\xe8\x7e\x0c\x20\x38\x9e\xa9\xda\x04\x29\x3c\xa4\xa3\x4f\x10\xd2\xc2\x25\x8a\xf9\x06\xa8\x99\xa8\xff\x9e\x1e\x5f\xb6\x5b\x8b\x27\x86\xbb\x73\xa1\x1e\x2e\x61\xa5\x41\x5f\x5e\xe1\x56\xb6\x76\x8e\x07\xdc\x4a\xbf\x62\x9f\x55\xa8\x51\x87\x4d\x57\x6d\x24\x15\x84\x63\x81\xa7\x0b\x82\x61\xec\x34\x36\x8b\x64\x72\x8b\xeb\xc7\x30\xd2\xa5\x85\x9c\xec\xd6\xae\x96\x79\x1e\x48\x85\x39\xbe\x27\x83\xb9\xea\xf6\xe0\x5c\xe7\xa7\x12\x05\xaa\x0c\x79\xdf\x04\xf3\x2f\x91\x29\xc0\x1c\x22\x63\xcd\x02\x05\xcc\x40\x55\x39\x6b\x75\x05\x22\xd9\x4a\x62\xe4\xbf\x9e\xc4\x1c\xb1\xb5\x2a\x11\xb1\xb0\x3c\x0b\xcb\x14\xba\xa9\x5d\xa7\x5a\x3f\x77\x2b\x6d\x2b\x65\xb1\x0d\x8a\xde\xcd\xe8\xc8\x45\x84\x24\xa9\xad\x0e\xf1\x66\x99\x6d\x9f\xef\x5e\x15\xe7\xf0\x5b\xf8\x30\x67\xb8\x9a\x5d\x74\xd1\x4a\xe5\xc4\x28\x01\x01\xda\x42\x12\x80\x48\x41\x71\x8e\x41\xc9\x89\x7a\xe7\x0d\xe4\xa8\x69\xf1\x5e\xc5\x80\xee\x23\x73\x3b\xc0\x1c\x31\x1f\x11\x01\xd7\x68\xba\xa4\x77\xa8\xc7\x78\x39\x16\xbb\x54\xf7\xa7\x5f\xbf\xf2\x0e\x5f\xbd\xfa\xd0\x8a\x39\x6b\xbe\x4c\xe7\x74\xf8\xca\x3d\x2b\xc9\x5b\xd3\x30\xa4\xbe\x32\x86\x17\x82\x41\x81\xd6\x9d\x42\x44\x12\x92\x15\x47\x73\x4a\xcb\x09\xfb\x1d\xa8\x71\xe8\xbd\xee\x46\x0c\xc7\x87\x29\x2d\x5e\x77\x55\x88\x55\xfd\xf2\x12\xfe\xde\xc7\x8f\x2d\xd9\xa9\x96\xba\xfb\x17\x71\x5c\x27\xb9\x07\x54\x7b\xee\x80\xf1\x75\x5e\x6c\x25\x69\xc8\xf2\x71\x5a\xcc\x3b\x69\xde\x99\xac\x6e\xb0\x52\x7e\x71\x61\x94\x9b\xd1\x51\x1e\x9d\x9a\xfe\x61\x8b\xb7\xcd\xa2\x5a\x2a\x14\x39\x3b\xf9\x72\x99\x70\x1a\x03\xc4\x41\xba\x74\xc0\x9e\x59\xeb\x14\x35\xde\x2f\x51\xb0\xd3\x00\x4e\xe1\x70\x8f\xc5\xe6\x27\xea\xc3\xb0\x97\x33\xa1\xd0\x01\xb0\x80\x03\x90\x8c\x1f\x6a\x44\xb2\x99\xca\xe0\x9c\x0a\x7b\x6b\xbe\x49\x5d\x29\x75\x67\x6c\x67\x06\x3c\x3e\x02\xa9\x90\x12\x2c\x76\xd7\x08\x4b\x52\x2e\x36\x90\xf5\xab\x63\x35\x53\x51\x5d\xfe\xf2\x93\xe1\x0a\x36\x80\x5b\x4a\xd6\xca\x18\x4d\x71\xd5\x05\xa3\xdd\x2a\x27\x86\x1f\xb0\x8a\x56\xad\x64\x7a\xba\x8b\xdd\x24\x76\xf2\xf0\x20\xb2\xd3\xa7\x44\x30\x1a\xf2\xd2\x8e\xaa\x49\xe4\x6f\x72\x88\xda\x14\x66\x85\xf0\x5b\xfc\xd8\x2c\xa4\x1f\xd2\x5e\x81\xec\xd9\x0a\x48\x8d\x75\x2f\xfd\x64\xb9\x7c\x6a\x99\x17\x8b\x1f\x0b\xb2\x3d\x62\xf4\x0e\x07\x28\x30\xee\x74\x30\x06\x54\x6c\x10\xbb\xc7\x1c\x01\x2c\xe4\x53\xbc\x26\x94\xa1\xe0\x00\x5c\x90\x70\x07\x28\x41\x80\xae\xc0\x3c\x5e\x86\xd8\x7f\x87\x76\x73\x28\x36\xe3\xf4\xbf\x2a\xe1\x3b\xf9\xdf\x39\xdc\x22\x1b\x40\x4c\x32\x60\xdb\xd5\x54\x3d\xe1\x69\xb8\xa3\x61\xca\x91\x59\xf0\x52\x01\x74\x7b\xcf\xad\x14\xda\xbd\x96\xf3\xa6\x44\x50\x53\x3b\x11\x73\x4c\xd6\x60\xb1\x38\xfb\xf0\x62\x82\x25\x5f\x06\xb1\xca\x94\xf9\x8a\xf3\x8d\xa7\x63\x25\xed\x42\xca\x15\xe3\x66\x74\x7f\xc5\x30\x37\xa3\xa3\x2a\xdc\xaa\x23\xba\x91\xa5\x6f\x8f\xe4\x56\xbd\x46\xe0\x16\x29\x44\x97\x48\x2a\xd2\xb4\x28\x41\xa3\x22\x31\xbb\x45\x3b\x7f\x03\x31\x39\x00\x59\x86\x52\xe2\x43\x6f\xdb\x3b\x18\xc6\x28\xcb\x27\xad\x08\xf7\x88\x68\xd4\x93\xae\xc1\x09\x76\x43\xf2\x11\xc9\xe4\x98\xa8\x32\x8d\x27\x42\xca\xc7\x44\xa9\x9e\xac\x52\x1c\xf4\x20\xeb\xd5\x06\x81\x08\x8a\x8d\xc5\x54\xe2\x18\xf5\x62\x11\x23\xfa\x92\xa9\x18\xd5\xac\xac\xc3\x9b\xd1\xff\x9b\x1c\x70\xbe\x99\xe0\xe0\x9f\x8c\xc3\x83\x28\x5e\xde\x8c\xb2\x02\x50\x0e\xd0\x6f\x51\x3e\xef\x84\x74\xd6\x71\x69\x52\xfa\xf1\xfe\x89\xb9\x9d\x67\x55\x8f\xb4\xc8\x26\x9c\xce\x1e\xb9\x92\xb6\xab\xc1\xa4\x34\x7f\x25\x57\x3a\x05\x68\xa5\x68\xd8\x4f\x01\xa7\xee\x1a\xd0\x77\x95\xf6\xa6\xb2\x49\xd3\x9a\xc7\xbc\xea\x56\x99\x82\x7d\xb2\x2c\xda\x40\x77\xdb\x64\xfa\xda\xa8\x26\x09\x88\xab\x15\xf2\x1b\x96\xa7\xdf\x7e\xcb\x0f\x30\xfd\x04\x23\xfc\xc9\xa7\x0c\x7d\xba\x3b\x3c\x50\xe3\x9c\x6a\x18\x4e\x2e\xbd\xdd\xab\x0c\x9d\x9f\xa9\x3d\xd0\xf8\xc3\x56\xdc\x78\x9b\xe7\x2e\x3d\xd2\xb8\x44\x91\x41\x18\x26\xdb\xec\x1f\xbc\x8b\x97\x88\x11\xa4\xb2\x4b\xd5\xf2\x34\x65\x8c\x7a\x28\x6e\x06\x78\xef\xae\x29\xab\xe4\x83\x2d\x7c\x78\x4f\x4c\x8a\x7f\xd8\xab\x2a\x89\x23\x91\xf4\x19\xca\xf4\x16\x32\xc5\xb1\x1b\x28\x8c\xe1\xe9\xd3\x2d\x02\x71\x3a\x26\xb8\xdf\x20\xa2\x8b\xc8\xa4\xa1\x95\xc9\xb5\x05\x2f\x6c\x1f\x82\x00\x40\x6e\x60\xb6\xb3\x03\x3f\x1b\x52\x4e\x6e\xce\x13\x37\x0d\xdf\x3d\x69\x32\x47\x09\x9a\x4f\x8c\xd4\x59\xc4\x3a\xca\x80\x02\xb7\x37\x59\xaa\xc1\x1c\x78\x95\xb1\xec\x0e\x49\x26\x93\xef\x92\x89\xdb\x05\x76\x4e\x76\x5c\xcc\x4e\x8e\x67\x01\x22\x02\x8b\xdd\x5c\x7b\x9f\xac\xe1\xc5\x08\xd9\x73\x23\xce\x63\xc4\xde\x5f\xfe\x94\x3f\x3b\xc5\x88\x88\xd9\x49\x8b\x73\x43\xfb\x45\x07\xe5\xa1\x03\x18\xc7\x21\xc4\x95\x3e\xeb\xfe\xcf\x7b\xb4\xd7\x4a\x28\xd0\xe1\xe3\xae\xad\x75\xec\xe2\xa8\x59\x3f\xed\xc6\x47\x5f\xba\xef\xc1\x5e\x04\x63\x8e\x98\x5c\x87\xce\x1c\x64\x01\xb4\xe4\xa1\x56\x22\xac\xdd\xbe\xab\x9c\x5d\x35\xd6\x15\x1b\xaa\x6a\xa3\x54\xf3\x62\x71\xe9\x07\x34\xc5\x95\xa1\x1c\x21\x5f\x25\x22\x13\x20\x25\x98\x0d\x9c\xb1\x6c\xa3\xde\xd3\x77\x0b\x00\x63\xb1\xf9\x8d\x74\x38\x3a\x6a\x39\x40\x5e\xa6\x46\x88\xc1\x7c\x8b\xbd\xea\x00\x69\x42\x86\x1f\xc2\xf8\x61\xca\xca\xbb\xe4\xf3\x35\x4c\x48\x0f\x6f\x7c\x5d\xa2\x07\x42\x4c\x10\x80\x6c\xad\x2a\x86\x6c\x74\x18\x01\x89\x2a\x08\x20\xda\x52\x02\x4e\x4e\xe7\x97\xa7\xc7\xd3\xab\xd3\x93\x56\x06\x43\xef\xc1\x9c\x7b\x30\xa5\xe6\x8f\x28\xdc\xda\x75\xf8\x0f\xa1\xaa\x44\x19\x58\x9c\x1f\x9f\xae\x95\xc3\x39\x29\x2b\x81\x61\x61\x5f\x3f\x83\x04\xaf\x10\xaf\x6e\x6b\xdd\x24\x3c\x7c\xac\x40\xaa\x18\xb5\xca\x62\x53\x0b\xbd\xb5\x90\x6d\x04\xe6\x2d\x16\xe0\x12\x45\x14\x50\xa2\x4f\x65\xc3\xb0\x2b\x6d\x06\x19\xd0\x49\x1d\x55\x5e\xdc\x23\xd2\x26\xc7\x54\x30\x24\x12\xb7\x08\x45\x40\x30\xe8\xdf\x4a\x01\x24\x91\xfc\x13\x07\x7c\x47\x7c\x29\x84\x54\xc6\xda\x3f\x74\xc8\x09\x73\x20\x85\xee\x1d\x0c\x11\x11\xf2\x4b\x53\x6a\x2b\x0d\x3e\xcf\x5b\x63\xe1\xc9\xaf\x3c\x01\xd7\x6a\xce\xfa\x11\xa1\x02\x71\x8f\xa1\x15\xc0\x44\x53\xa0\x23\x35\x9f\x0a\xce\x95\x16\x15\x8f\x60\x75\x2a\x51\x83\x45\x39\xd6\x87\x89\x20\x81\x25\x9d\x15\xa6\xfa\x5a\x5b\xbe\x50\xb8\xe8\x6b\xf9\x8a\x1b\x0a\x1d\xac\x0f\xc0\xaa\x07\x7d\x1f\x61\xf8\x0a\x23\x12\x06\x17\xa4\xfa\x8a\xad\x46\xa7\x74\x84\x0b\x16\xfb\x42\x63\x24\x28\x90\x40\x3d\xd5\x51\x7d\x4b\x03\xdd\x3f\x49\x77\x23\x56\xa8\x06\x28\x0a\xe9\x4e\xc5\x5c\x21\xcf\xbc\xdb\x91\x52\x8f\x3c\x7a\xb3\xd4\xb9\x7b\x2c\x36\x72\x09\xfa\x92\xd1\x86\x02\x07\xd1\x06\x8d\x00\x76\xb4\x45\xab\x34\x42\x49\x2c\x3a\xb7\xa5\x8b\x72\x2e\xa6\x74\x2a\xf7\xc4\x54\x6a\xa6\xfa\x07\xb1\x3d\xcd\x01\xb9\xa4\x66\xde\xcf\xb6\x3d\x89\x19\x0a\xa1\x48\x4f\x0e\xa8\xa5\xb4\xba\x31\x23\x11\x91\x69\x92\x42\xb2\x71\xa5\x20\x65\x28\xa2\x1c\x0b\xca\x76\x52\xc4\x49\x11\xd8\x3c\x06\xf0\xf9\x31\xcb\x59\xbb\x73\x47\xbb\xd3\x9a\xab\x43\x69\x1c\xb5\xaa\x57\x6d\xc5\x93\x29\xf8\x41\xd6\x3c\xed\x84\x5a\xee\x82\x9a\x94\x16\x35\x5e\xa7\x66\xd0\xf2\xb4\xd5\x4d\x4a\x8c\x2a\x68\xe7\x4f\x9c\x92\x20\xa2\x98\x88\x85\xbe\x8e\xa1\xa3\x05\x3c\xce\xff\xea\xec\x7a\x63\xf3\xe4\xcb\x24\x49\xd1\x4a\x73\x9d\xcb\x3f\x86\x74\xcd\x47\xb9\x87\x1f\x06\x30\xbc\x53\x72\x67\xb2\xd2\x90\x21\x8a\xbd\xa4\xc2\x04\x27\xb7\x31\x17\x60\x89\x80\xed\x83\x2f\x6d\x64\xdb\x3d\xd4\x56\x6b\xe8\x36\x4b\x88\x08\xa6\x60\x9a\xfe\x53\xf9\x89\xdb\xab\x1b\x33\xd3\xb5\x8f\xe4\x24\x5b\xdf\xd9\xf8\x19\xe6\x90\x6d\x95\x94\x9f\x4c\xcd\xbd\x88\x99\xf9\xd5\xbc\x25\xa7\x5c\xb8\x23\xd1\xa9\x3a\x51\xff\xeb\x16\x6c\x6d\x99\x52\xf3\x4a\xf6\xad\x00\x54\xe5\x38\x3b\xdb\x2e\xb6\x5b\x1f\xdf\xae\x70\x6b\x8c\x86\x56\x12\x0d\x95\xdb\xd9\xd4\x6c\xf1\x41\xa4\x5e\xf6\x16\xa4\x72\x48\x79\xdf\xec\xdb\xdc\xb1\xd4\x1c\x7a\x41\x2a\xaa\xc2\xfd\x26\xe2\x90\xc6\x22\x8a\x45\xcf\x3c\x88\x0b\x05\x04\x04\x98\xa9\xf6\x41\xbb\xc4\x85\xb6\x37\xff\x05\xf2\x2f\x89\x12\x10\xe6\x46\x73\x0e\x5e\xac\x55\xb7\x34\x81\x92\xdf\x8c\x3f\xde\xee\x60\xe5\x51\xc7\xce\x30\xe9\xc1\xe4\xfb\x7f\xc7\xd8\xbf\xe5\x02\x32\xe1\x49\xa5\xef\x49\x63\xad\x22\xe7\x89\x21\xdd\x9e\xad\x07\x51\xe9\x4a\x4d\xe3\x7f\xcb\x41\xc1\x42\x8e\x6a\x91\x3d\x00\xc7\x3a\x49\x0d\x82\x25\x83\xc4\xdf\x8c\x81\x74\x07\xd5\xd5\x5b\xca\x81\xdf\x40\xbe\xc9\x18\xb0\xed\x44\xea\x90\xe3\x3a\x69\xa3\x13\x14\x7a\x50\x46\xe5\xe9\x51\x06\xde\x5f\xfe\x04\xaa\xb1\x6d\x35\xe9\x2e\x20\x4d\xf1\x21\x2f\x37\xb9\x83\x51\xe4\x05\xe8\x6e\x88\xe6\x74\x86\x58\x2e\xd6\x1a\x3b\x77\xf1\xd0\xb6\xbc\xbe\x0c\x46\xdd\x75\x03\x41\xba\x03\xd2\x4d\x45\x8d\x42\xb5\x97\xbd\x65\x6d\x64\x18\x04\xd9\xa8\x51\x6a\x2a\x77\x32\xde\x1f\x0b\x95\x9c\xec\xbc\x44\x11\x6d\x22\x38\xf5\x0e\xe8\x99\x3c\xb6\xc6\xc2\x6c\x25\x10\x93\x00\x31\xdb\x2d\xd2\xe0\x5d\x10\xff\x58\x2a\xda\x7b\x1c\x86\x3a\x41\x55\x6e\x39\xe9\xb5\xfc\x97\x0a\xd6\xa1\x60\xac\x63\x1a\x5b\xa8\xbe\xed\xe8\x10\x0f\x87\x15\xdc\x46\xff\xd8\x87\x99\xdb\xda\xd9\x42\xdc\x37\x56\xa8\x60\x18\xbc\x2d\x6e\xd6\x9b\x33\xc2\xca\xdf\x40\xb2\x46\xbc\x4f\x74\xaf\xdb\x28\xce\x49\xaf\xc2\xf8\x61\x80\x6c\xc4\x54\x0d\x66\x57\x4e\x85\x7d\xea\x96\xed\x9e\xc9\x45\x23\xe3\x34\x2a\x36\xe9\xc3\x40\x8f\x83\x85\x93\x6e\x11\x14\x9b\x2f\x77\x76\x71\x89\x42\x28\xf0\x9d\x4e\x9a\xd4\x77\xa8\x9a\x42\x8b\x42\x64\x40\x53\xc0\xfc\x70\x11\xf1\x34\xc6\xa0\x26\x6f\x2e\xda\x92\x7c\xb3\xc2\x24\xc8\xa6\x33\xe5\xc2\xef\xaa\xcd\xb8\xa1\xcf\xf5\x8d\xea\x44\xe8\xf1\x1d\x17\x68\x7b\x33\x1a\x83\x9b\xd1\x12\x72\x74\x33\xfa\xd0\x75\xed\xbe\xe8\x74\xb4\x23\x94\x99\x92\xcd\x03\xd5\xff\xca\xa9\xe9\xbf\x3e\xec\x67\x0a\x6d\x1c\x2f\x16\x3f\xf6\xcf\xf1\x9d\x67\xd2\x61\xad\xd1\x6d\xd2\x5d\xed\x51\xa7\x9c\x49\x2c\x36\x88\x08\xec\xcb\x9f\x3b\x52\xbf\xdf\x48\x4e\x42\xc4\xac\x8f\x20\xbd\x32\x0b\x2f\x91\x90\x86\x91\xc1\xad\xc4\x07\x6a\xcd\x4d\xa2\x4d\x4e\xef\xe6\x36\x7b\x6b\x29\xf2\x58\x43\x57\xdb\x6d\x6b\x2c\xfe\x67\xda\x1f\xf1\x3b\xca\xd6\x13\x39\x62\x85\x1d\x57\x48\x12\xe8\xa9\xb1\x24\x88\x47\x57\x58\x9d\x06\xe9\x68\xb9\x4a\xde\x1b\x97\xec\xa5\x92\xe8\x76\xe9\xc0\x22\x65\x4b\xc6\x41\xed\x5e\x1f\xda\x02\xde\x1b\x33\x86\x45\xf1\x98\xdc\x01\xad\xa5\xe3\xe3\x44\xaa\xf7\x8f\x9a\xb3\x6b\x17\xc8\x67\x48\x70\xd3\xed\xb8\x51\x73\x8b\x5b\xb4\x9b\x5e\x9e\x37\xcf\x4e\x33\xef\x3f\x56\x7e\xb2\x13\x97\xe1\xe3\x37\xef\xce\x16\x00\x25\x54\x4a\xf2\x5a\x06\x8a\xdf\x54\x41\xcf\xad\xd5\x2f\x28\x0c\xdf\x11\x7a\xdf\xae\x39\xe0\x20\x2d\xe4\x54\xdf\xa4\x5c\x7b\xa4\x72\x9f\xb7\x03\xb0\x40\x08\x5c\xa7\x0f\xc0\xf4\x97\x05\x08\xa8\xcf\xeb\xdb\x8d\xa0\x5b\x6e\x2f\xa3\xcd\xb4\xf2\x28\x83\x57\x9d\x46\xda\x05\x2d\x9a\xa3\xdd\xac\xf5\x48\x1b\x54\x6f\x46\x47\x0e\x52\x7c\x3f\x81\x47\xd5\xdd\xf2\x6b\xce\x49\xe1\x3d\xcf\x76\xb6\x3e\xd6\x95\xa8\x83\x2f\xab\x2e\xdc\x53\x15\x80\xf7\xdc\x0b\x29\x0c\x3c\xd3\xd1\x80\x79\x7e\x32\xa6\x59\x6a\x89\x10\xb0\x18\x75\x5d\xe9\xda\x71\x06\x59\xf3\x36\x73\xea\xc1\x07\x7b\x27\x72\x33\x3a\x2a\x53\xac\x33\x43\x0c\xd4\x40\x51\x91\x2b\xdb\xc6\x2f\xa1\x9d\x59\xe4\xdc\x6f\xf9\x35\xee\xd4\xfd\xaf\xcb\x72\xd6\xe0\x37\x50\x4f\xc2\x9b\xd1\x51\x69\xa2\x9d\x97\x06\x2d\xf9\xf1\x62\xf6\xf8\x5b\x14\x2d\xb9\xe7\x73\x5c\xde\x98\x92\x15\xed\x8f\xba\xe9\x5f\x61\xe5\x32\xed\xbe\x6f\x13\x2f\xcc\xe3\x78\xcd\x27\xe5\x6f\x6d\xbb\x46\xfd\x3f\x2f\x4a\xda\xf4\x0e\xb8\x33\xab\xa6\x52\xdb\xa9\xbc\x07\xea\x52\x3a\xbb\x89\xd4\x7d\xd5\x57\x9f\x69\xd5\x57\x75\xab\xbe\xaa\x59\xf5\x82\x14\x5b\x86\x74\xad\x76\x86\xee\xb4\xc7\x93\xf2\x6e\x4c\xd6\x29\xa0\x1d\x81\x5b\xec\x7b\x91\xbd\x5a\x06\x93\xf5\x90\xeb\x5e\x31\x99\xf2\xba\x0f\x85\xbc\x5d\xf9\x32\xa1\xba\xaf\xfc\x80\x3d\x30\xf3\x8d\x29\x6b\x1a\x52\x9a\x45\xcf\xbd\xdf\x78\x93\x67\xbf\x92\xa4\x5c\x4e\x74\x14\x56\x0b\x4b\x11\x0b\xca\x30\x0c\xd5\x8e\x3a\xd8\x06\x5d\xd6\xbb\xe5\x3c\x5a\xed\xf3\x76\xd8\xdf\x8c\x8e\x4a\x44\xea\xbc\xd4\x5f\xba\x71\x67\xbb\x85\x18\x64\x90\xa1\x8e\xe4\xdb\xf5\xbb\xac\xb6\x77\x2b\x36\x5e\x85\x69\x54\xa7\x96\xeb\x84\xf7\x20\x2e\xa5\x3a\x9a\x57\x1d\x70\xa4\xbc\xf3\xe9\x76\x4b\x49\xda\x30\xbb\x4d\xef\xca\xfd\x90\x72\xae\x62\xba\x79\x3e\xdd\x23\x78\x87\xee\x29\xbb\xe5\x9f\xf4\xdd\xdc\x9f\xa2\xdb\xf5\xa7\x58\xe0\x90\x7f\xc2\x11\x41\xe2\x60\x36\x3f\xcf\x5f\xc0\x52\x11\xa3\x2a\xf1\x30\x01\xb3\x39\x80\x41\xc0\x10\x57\xad\x84\x8e\x67\x27\x97\x80\x50\xd1\x2e\xbf\x6b\x0f\x98\xdc\xbc\xf6\x54\x55\x57\xcf\x21\x07\x25\x7f\x2f\x68\xe6\xa3\xf2\x09\xc1\xbe\x8b\x17\xae\xd2\xb2\xe2\xec\x3e\x70\x9f\x15\x94\xea\x72\x20\x09\x42\xc4\x41\x4c\xb6\x90\xf1\x0d\x0c\xd5\xe5\x97\x4b\x2a\x36\x60\x0b\xa3\x6b\x8d\xfa\x07\xfd\x8f\x3a\xad\xbc\xfe\x50\x18\xb8\x29\x8d\xfb\x8f\xf4\x07\xbb\xe1\x7f\xff\xc3\xef\x7f\xf8\xff\x01\x00\x00\xff\xff\x0a\xa2\xe4\x70\x67\x56\x01\x00") - -func schemaJsonBytes() ([]byte, error) { - return bindataRead( - _schemaJson, - "schema.json", - ) -} - -func schemaJson() (*asset, error) { - bytes, err := schemaJsonBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "schema.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0x3a, 0x6d, 0x45, 0x58, 0xc1, 0x87, 0x23, 0xf2, 0x10, 0x81, 0x88, 0x2, 0x85, 0xa5, 0xc2, 0xec, 0x8, 0xe7, 0x19, 0x53, 0x3b, 0x82, 0xc7, 0x4b, 0xa0, 0x4a, 0x44, 0x81, 0xa, 0xde, 0xa6}} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// AssetString returns the asset contents as a string (instead of a []byte). -func AssetString(name string) (string, error) { - data, err := Asset(name) - return string(data), err -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// MustAssetString is like AssetString but panics when Asset would return an -// error. It simplifies safe initialization of global variables. -func MustAssetString(name string) string { - return string(MustAsset(name)) -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetDigest returns the digest of the file with the given name. It returns an -// error if the asset could not be found or the digest could not be loaded. -func AssetDigest(name string) ([sha256.Size]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s can't read by error: %v", name, err) - } - return a.digest, nil - } - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s not found", name) -} - -// Digests returns a map of all known files and their checksums. -func Digests() (map[string][sha256.Size]byte, error) { - mp := make(map[string][sha256.Size]byte, len(_bindata)) - for name := range _bindata { - a, err := _bindata[name]() - if err != nil { - return nil, err - } - mp[name] = a.digest - } - return mp, nil -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "schema.json": schemaJson, -} - -// AssetDebug is true if the assets were built with the debug flag enabled. -const AssetDebug = false - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"}, -// AssetDir("data/img") would return []string{"a.png", "b.png"}, -// AssetDir("foo.txt") and AssetDir("notexist") would return an error, and -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - canonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(canonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} - -var _bintree = &bintree{nil, map[string]*bintree{ - "schema.json": {schemaJson, map[string]*bintree{}}, -}} - -// RestoreAsset restores an asset under the given directory. -func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - return os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) -} - -// RestoreAssets restores an asset under the given directory recursively. -func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil -} - -func _filePath(dir, name string) string { - canonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(canonicalName, "/")...)...) -} diff --git a/pkg/authconfigmap/assets.go b/pkg/authconfigmap/assets.go deleted file mode 100644 index fed4761932..0000000000 --- a/pkg/authconfigmap/assets.go +++ /dev/null @@ -1,274 +0,0 @@ -// Code generated by go-bindata. DO NOT EDIT. -// sources: -// assets/emr-containers-rbac.yaml (1.468kB) - -package authconfigmap - -import ( - "bytes" - "compress/gzip" - "crypto/sha256" - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo - digest [sha256.Size]byte -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -func (fi bindataFileInfo) Name() string { - return fi.name -} -func (fi bindataFileInfo) Size() int64 { - return fi.size -} -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} -func (fi bindataFileInfo) IsDir() bool { - return false -} -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _emrContainersRbacYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x94\x3f\x8f\xdb\x30\x0c\xc5\x77\x7d\x0a\x21\xf3\x39\x87\x6e\x85\xc7\x2e\xdd\x0f\x68\x97\xa2\x03\x25\xbf\xf8\x74\x27\x8b\x02\x29\xa7\x7f\x3e\x7d\x21\x39\xbe\x2b\x5a\xa7\x48\x8a\xa0\x9d\x44\x93\xf6\xd3\x8f\x0f\x26\x29\x87\x8f\x10\x0d\x9c\x7a\x2b\x8e\xfc\x9e\xe6\xf2\xc8\x12\xbe\x53\x09\x9c\xf6\xcf\x6f\x75\x1f\xf8\xfe\xf8\xc6\x3c\x87\x34\xf4\xf6\x81\x23\xcc\x84\x42\x03\x15\xea\x8d\xb5\x89\x26\xf4\x16\x93\x74\x9e\x53\xa1\x90\x20\x6a\x64\x8e\xd0\x5a\xed\x2c\xe5\xf0\x5e\x78\xce\xda\xdb\x4f\xbb\xdd\x67\x63\xad\xb5\x02\xe5\x59\x3c\x5a\xae\x0a\x68\x26\x0f\x3d\x55\x8f\x10\xd7\x2a\x23\x4a\x4b\x5d\x20\xa2\x90\x63\xf0\x20\xef\x79\x4e\x45\x77\x77\x76\x4d\xb5\xd8\x73\x3a\x84\x71\xa2\xdc\x9e\x70\xc4\xe9\x9d\xcc\xc3\xcb\x79\x1f\x79\xdc\x22\xb8\xb3\xbb\x18\xb4\x9d\x5f\xa8\xf8\xc7\x1a\x0c\x50\x2f\xc1\xa1\x69\x0b\xa8\xb4\x08\x43\x28\x4b\x35\x62\xc9\x2c\x91\xe7\x18\xe1\xab\x9d\x35\x47\x29\x71\x39\x7d\x91\x57\xc1\x48\x0e\xf1\xf2\x66\xbd\xa0\xfc\x66\xd7\x2b\x48\x7e\xe5\x5c\x49\x16\xf4\x8d\x0b\x28\x67\xdd\xbc\xa4\x32\x1e\xe6\xa8\x58\xac\x1a\x90\x23\x7f\x9b\x9a\x73\x37\x76\xe9\x3a\x47\xdc\x4b\x27\xbf\x10\x3f\xb1\xfb\xcf\x68\xf8\x5a\x90\xea\x28\x6d\x3a\x1a\xd2\x28\x50\xdd\xfe\xcf\xff\x1d\xe4\xd9\x21\xdf\x62\x16\x8e\xcb\x04\xd5\xc0\x85\x34\x84\x34\xde\x9c\xff\xea\x29\x31\x5d\xd7\x99\xbf\x58\x5c\xef\x96\x06\x2e\xd8\x5f\x1c\xf1\x80\x43\xad\xaf\xde\xfd\xe1\x12\x63\xed\x4f\xcb\xf1\x8c\xa4\xce\xee\x09\xbe\x68\x6f\xba\xab\x34\x3f\x28\xe4\x9c\xe6\x8f\x00\x00\x00\xff\xff\x8b\x95\x6b\x36\xbc\x05\x00\x00") - -func emrContainersRbacYamlBytes() ([]byte, error) { - return bindataRead( - _emrContainersRbacYaml, - "emr-containers-rbac.yaml", - ) -} - -func emrContainersRbacYaml() (*asset, error) { - bytes, err := emrContainersRbacYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "emr-containers-rbac.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0xbc, 0x51, 0xe8, 0x47, 0x23, 0x61, 0x8, 0xb1, 0x55, 0x1d, 0xce, 0x13, 0x1e, 0xda, 0x59, 0x4e, 0x6d, 0xda, 0x2b, 0xc5, 0x4, 0x3d, 0x7a, 0x8, 0xce, 0x29, 0xdf, 0x28, 0xab, 0x7d, 0x60}} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// AssetString returns the asset contents as a string (instead of a []byte). -func AssetString(name string) (string, error) { - data, err := Asset(name) - return string(data), err -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// MustAssetString is like AssetString but panics when Asset would return an -// error. It simplifies safe initialization of global variables. -func MustAssetString(name string) string { - return string(MustAsset(name)) -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetDigest returns the digest of the file with the given name. It returns an -// error if the asset could not be found or the digest could not be loaded. -func AssetDigest(name string) ([sha256.Size]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s can't read by error: %v", name, err) - } - return a.digest, nil - } - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s not found", name) -} - -// Digests returns a map of all known files and their checksums. -func Digests() (map[string][sha256.Size]byte, error) { - mp := make(map[string][sha256.Size]byte, len(_bindata)) - for name := range _bindata { - a, err := _bindata[name]() - if err != nil { - return nil, err - } - mp[name] = a.digest - } - return mp, nil -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "emr-containers-rbac.yaml": emrContainersRbacYaml, -} - -// AssetDebug is true if the assets were built with the debug flag enabled. -const AssetDebug = false - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"}, -// AssetDir("data/img") would return []string{"a.png", "b.png"}, -// AssetDir("foo.txt") and AssetDir("notexist") would return an error, and -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - canonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(canonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} - -var _bintree = &bintree{nil, map[string]*bintree{ - "emr-containers-rbac.yaml": {emrContainersRbacYaml, map[string]*bintree{}}, -}} - -// RestoreAsset restores an asset under the given directory. -func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - return os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) -} - -// RestoreAssets restores an asset under the given directory recursively. -func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil -} - -func _filePath(dir, name string) string { - canonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(canonicalName, "/")...)...) -} diff --git a/pkg/authconfigmap/service_access.go b/pkg/authconfigmap/service_access.go index c6f18622bc..a00a0ff06b 100644 --- a/pkg/authconfigmap/service_access.go +++ b/pkg/authconfigmap/service_access.go @@ -3,6 +3,9 @@ package authconfigmap import ( "fmt" + // go go:embed to work + _ "embed" + "github.com/kris-nova/logger" "github.com/pkg/errors" "github.com/weaveworks/eksctl/pkg/assetutil" @@ -12,7 +15,8 @@ import ( "k8s.io/apimachinery/pkg/runtime" ) -//go:generate ${GOBIN}/go-bindata -pkg ${GOPACKAGE} -prefix assets -nometadata -o assets.go assets +//go:embed assets/emr-containers-rbac.yaml +var emrContainersRbacYamlBytes []byte type ServiceName string @@ -126,7 +130,7 @@ func lookupService(serviceName string) (resources []byte, sd serviceDetails, err switch ServiceName(serviceName) { case emrContainers: - return assetutil.MustLoad(emrContainersRbacYamlBytes), emrContainersService, nil + return emrContainersRbacYamlBytes, emrContainersService, nil default: return nil, sd, errors.Errorf("invalid service name %q", serviceName) } diff --git a/pkg/ctl/utils/schema.go b/pkg/ctl/utils/schema.go index ef5e41afb6..9e0aa2fa94 100644 --- a/pkg/ctl/utils/schema.go +++ b/pkg/ctl/utils/schema.go @@ -2,7 +2,6 @@ package utils import ( "fmt" - "log" "github.com/spf13/cobra" @@ -19,9 +18,5 @@ func schemaCmd(cmd *cmdutils.Cmd) { } func doSchemaCmd(cmd *cmdutils.Cmd) { - schema, err := api.Asset("schema.json") - if err != nil { - log.Fatal(err.Error()) - } - fmt.Printf("%s", schema) + fmt.Printf("%s", api.SchemaJSON) } diff --git a/pkg/nodebootstrap/al2.go b/pkg/nodebootstrap/al2.go index b5c587fa80..241d15019f 100644 --- a/pkg/nodebootstrap/al2.go +++ b/pkg/nodebootstrap/al2.go @@ -4,6 +4,7 @@ import ( "github.com/kris-nova/logger" "github.com/pkg/errors" api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" + "github.com/weaveworks/eksctl/pkg/nodebootstrap/assets" ) const ( @@ -23,13 +24,13 @@ func NewAL2Bootstrapper(clusterConfig *api.ClusterConfig, ng *api.NodeGroup) *Am } func (b *AmazonLinux2) UserData() (string, error) { - var scripts []string + var scripts []script if api.IsEnabled(b.ng.EFAEnabled) { - scripts = append(scripts, "efa.al2.sh") + scripts = append(scripts, script{name: "efa.al2.sh", contents: assets.EfaAl2Sh}) } - body, err := linuxConfig(b.clusterConfig, al2BootScript, b.ng, scripts...) + body, err := linuxConfig(b.clusterConfig, al2BootScript, assets.BootstrapAl2Sh, b.ng, scripts...) if err != nil { return "", errors.Wrap(err, "encoding user data") } diff --git a/pkg/nodebootstrap/assets/assets.go b/pkg/nodebootstrap/assets/assets.go new file mode 100644 index 0000000000..d622110cac --- /dev/null +++ b/pkg/nodebootstrap/assets/assets.go @@ -0,0 +1,38 @@ +package assets + +import ( + // Import go:embed + _ "embed" +) + +//EksctlAl2Conf holds the eksctl.al2.conf contents +//go:embed scripts/10-eksctl.al2.conf +var EksctlAl2Conf string + +//BootstrapAl2Sh holds the bootstrap.al2.sh contents +//go:embed scripts/bootstrap.al2.sh +var BootstrapAl2Sh string + +//BootstrapHelperSh holds the bootstrap.helper.sh contents +//go:embed scripts/bootstrap.helper.sh +var BootstrapHelperSh string + +//BootstrapUbuntuSh holds the bootstrap.ubuntu.sh contents +//go:embed scripts/bootstrap.ubuntu.sh +var BootstrapUbuntuSh string + +//EfaAl2Sh holds the efa.al2.sh contents +//go:embed scripts/efa.al2.sh +var EfaAl2Sh string + +//EfaManagedBoothook holds the efa.managed.boothook contents +//go:embed scripts/efa.managed.boothook +var EfaManagedBoothook string + +//InstallSsmAl2Sh holds the install-ssm.al2.sh contents +//go:embed scripts/install-ssm.al2.sh +var InstallSsmAl2Sh string + +//KubeletYaml holds the kubelet.yaml contents +//go:embed scripts/kubelet.yaml +var KubeletYaml string diff --git a/pkg/nodebootstrap/bindata/assets/10-eksctl.al2.conf b/pkg/nodebootstrap/assets/scripts/10-eksctl.al2.conf similarity index 100% rename from pkg/nodebootstrap/bindata/assets/10-eksctl.al2.conf rename to pkg/nodebootstrap/assets/scripts/10-eksctl.al2.conf diff --git a/pkg/nodebootstrap/bindata/assets/bootstrap.al2.sh b/pkg/nodebootstrap/assets/scripts/bootstrap.al2.sh similarity index 100% rename from pkg/nodebootstrap/bindata/assets/bootstrap.al2.sh rename to pkg/nodebootstrap/assets/scripts/bootstrap.al2.sh diff --git a/pkg/nodebootstrap/bindata/assets/bootstrap.helper.sh b/pkg/nodebootstrap/assets/scripts/bootstrap.helper.sh similarity index 100% rename from pkg/nodebootstrap/bindata/assets/bootstrap.helper.sh rename to pkg/nodebootstrap/assets/scripts/bootstrap.helper.sh diff --git a/pkg/nodebootstrap/bindata/assets/bootstrap.ubuntu.sh b/pkg/nodebootstrap/assets/scripts/bootstrap.ubuntu.sh similarity index 100% rename from pkg/nodebootstrap/bindata/assets/bootstrap.ubuntu.sh rename to pkg/nodebootstrap/assets/scripts/bootstrap.ubuntu.sh diff --git a/pkg/nodebootstrap/bindata/assets/efa.al2.sh b/pkg/nodebootstrap/assets/scripts/efa.al2.sh similarity index 100% rename from pkg/nodebootstrap/bindata/assets/efa.al2.sh rename to pkg/nodebootstrap/assets/scripts/efa.al2.sh diff --git a/pkg/nodebootstrap/bindata/assets/efa.managed.boothook b/pkg/nodebootstrap/assets/scripts/efa.managed.boothook similarity index 100% rename from pkg/nodebootstrap/bindata/assets/efa.managed.boothook rename to pkg/nodebootstrap/assets/scripts/efa.managed.boothook diff --git a/pkg/nodebootstrap/bindata/assets/install-ssm.al2.sh b/pkg/nodebootstrap/assets/scripts/install-ssm.al2.sh similarity index 100% rename from pkg/nodebootstrap/bindata/assets/install-ssm.al2.sh rename to pkg/nodebootstrap/assets/scripts/install-ssm.al2.sh diff --git a/pkg/nodebootstrap/bindata/assets/kubelet.yaml b/pkg/nodebootstrap/assets/scripts/kubelet.yaml similarity index 100% rename from pkg/nodebootstrap/bindata/assets/kubelet.yaml rename to pkg/nodebootstrap/assets/scripts/kubelet.yaml diff --git a/pkg/nodebootstrap/bindata/assets.go b/pkg/nodebootstrap/bindata/assets.go deleted file mode 100644 index f72a7775d9..0000000000 --- a/pkg/nodebootstrap/bindata/assets.go +++ /dev/null @@ -1,485 +0,0 @@ -// Code generated by go-bindata. DO NOT EDIT. -// sources: -// bindata/assets/10-eksctl.al2.conf (1.025kB) -// bindata/assets/bootstrap.al2.sh (755B) -// bindata/assets/bootstrap.helper.sh (1.403kB) -// bindata/assets/bootstrap.legacy.al2.sh (1.286kB) -// bindata/assets/bootstrap.legacy.ubuntu.sh (2.275kB) -// bindata/assets/bootstrap.ubuntu.sh (597B) -// bindata/assets/efa.al2.sh (351B) -// bindata/assets/efa.managed.boothook (484B) -// bindata/assets/install-ssm.al2.sh (159B) -// bindata/assets/kubelet.yaml (480B) - -package bindata - -import ( - "bytes" - "compress/gzip" - "crypto/sha256" - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo - digest [sha256.Size]byte -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -func (fi bindataFileInfo) Name() string { - return fi.name -} -func (fi bindataFileInfo) Size() int64 { - return fi.size -} -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} -func (fi bindataFileInfo) IsDir() bool { - return false -} -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _bindataAssets10EksctlAl2Conf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdf\x6b\xdb\x30\x10\x7e\xf7\x5f\x71\x90\x3e\x6c\x10\xd9\xac\x7d\x2b\xf8\xc1\x8b\xdd\x12\x96\x3a\x25\x76\xb7\xc1\x36\x8c\x2c\x5d\xd2\x23\xb2\x64\x24\x39\x69\x57\xf2\xbf\x0f\xc7\xf1\x96\xb2\x32\xf6\x26\xdd\x77\xf7\x7d\xdf\xfd\x98\x00\x6e\x9d\xf0\x8a\xb9\x16\x05\xad\x49\x80\x7b\x76\x1e\x1b\x09\xd2\x9a\x96\x91\x86\x4e\x93\x87\xb5\xb1\xb0\xed\x6a\x54\xe8\xa7\xc7\x4f\xd2\xf0\x9f\x46\xc3\x82\x74\xf7\x04\x97\xf0\x2e\x59\x5c\xbe\x0f\x26\x50\x2e\xd3\x25\xa4\xd8\x5a\x14\xdc\xa3\x9c\xc2\x9e\x94\x82\x1a\xc1\x62\x63\x76\x28\xc1\x19\xa3\x83\xe0\x5b\x81\x76\x47\x02\x7f\x04\x13\x58\x18\xc1\x15\x34\xe8\xb9\xe4\x9e\x43\xcb\x2d\x6f\xd0\xa3\x75\xd7\xb0\xca\x6e\xe7\xcb\x7c\x0a\xc9\x97\xa2\x4a\xb3\x9b\xe4\x61\x51\x56\x43\x2c\xc8\xf4\x8e\xac\xd1\x0d\x6a\x7f\x43\x0a\xe3\x08\xbd\x88\x86\x56\xa2\x91\x2b\x44\xbd\x0b\x26\x70\xab\x4c\xcd\x15\x70\x2d\xc1\x79\xee\x49\xbc\xd2\x98\x2d\x1e\x8a\x32\x5b\x55\x69\x5e\x4c\x21\x5f\xa6\x59\xb5\x48\x3e\x66\x8b\xf1\x53\x26\xf3\xbc\x2c\xfe\x29\x77\x9a\xcb\x49\x6d\x68\x47\x1b\xcd\xde\x10\x3b\x52\xce\xef\xa7\x30\xcf\x8b\x32\xc9\x67\x59\x35\x4f\xff\x8b\x5b\xf5\xac\x47\x85\x20\x7b\x42\x51\x78\x6e\x7d\x7c\xf6\x8c\x3a\x67\xa3\x9a\xf4\x58\x00\xdf\x03\x00\xc6\xb4\x91\xc8\xa8\x8d\x2f\x5e\x4e\xca\x87\x73\x40\xf1\x1a\x95\x1b\xc1\xa1\xed\xc3\x94\xab\xf6\x91\x87\x83\x7e\x48\x26\x22\xed\x3c\xd7\x02\x19\xc9\xf8\xe2\xe5\xcc\xf8\xc8\xd5\xf0\x27\xd6\x1a\xd9\x13\xdd\x25\x5f\xab\xfb\x65\x5a\x8c\x90\xc5\x0d\x39\x8f\xf6\xa8\x17\x7b\xdb\xe1\x79\x70\x4f\xfe\x91\x79\x4e\xda\xff\x36\x31\x8c\x7b\x2c\x17\xca\x74\x92\xb5\xd6\xec\x48\xa2\x8d\xf9\xde\x8d\x80\xd1\x7d\x1d\x5a\x66\x3b\xed\xa9\xc1\x58\x1a\xb1\x45\x3b\x76\x87\x7e\x6f\xec\x96\xb5\xaa\xdb\x90\x8e\x85\xa6\xb1\x4e\x13\xab\x49\x33\x49\x36\x8e\x4c\xeb\x23\xa1\xa9\x1f\xdb\x19\x2c\x8c\x5e\x0f\x78\xbf\x86\x1e\xd7\xe8\x43\x79\xca\x68\x8d\x64\xa4\xd7\x96\x9f\x59\xa0\x86\x6f\x30\xbe\x78\xe9\xaf\x34\xfb\x54\x54\xd9\x6c\x55\x25\xb3\xd9\xf2\x21\x2f\x0f\xa1\xdc\xda\x10\x85\x0d\x07\xf8\xf5\x11\x1f\x4e\xd1\x22\x5b\x7d\x9e\xcf\xb2\xa2\x4a\x97\x77\xc9\x3c\x3f\xf4\xcb\x8f\x5a\xde\x39\xbc\xbe\x0a\xaf\x18\x6e\x5d\xdd\x91\x92\xe1\x87\x93\x89\x7e\xc7\xbd\x4d\xda\xfc\x75\x2b\x43\x38\x7c\xe6\x8d\xfa\x33\xaa\xb7\x12\xfb\xa3\xea\xb3\x82\x5f\x01\x00\x00\xff\xff\x04\xfc\xe9\x45\x01\x04\x00\x00") - -func bindataAssets10EksctlAl2ConfBytes() ([]byte, error) { - return bindataRead( - _bindataAssets10EksctlAl2Conf, - "bindata/assets/10-eksctl.al2.conf", - ) -} - -func bindataAssets10EksctlAl2Conf() (*asset, error) { - bytes, err := bindataAssets10EksctlAl2ConfBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/10-eksctl.al2.conf", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x2b, 0x5f, 0x5a, 0xc4, 0x94, 0x74, 0x90, 0x34, 0x26, 0x3b, 0xc9, 0x7, 0x3f, 0x89, 0x8f, 0xe9, 0x6f, 0xe5, 0x33, 0x58, 0x2b, 0x82, 0x48, 0xd, 0xca, 0x2b, 0x91, 0x5f, 0x6f, 0x4a, 0xab}} - return a, nil -} - -var _bindataAssetsBootstrapAl2Sh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\xd1\x6a\xdb\x4c\x10\x85\xef\xf7\x29\xe6\xd7\x1f\x30\x14\x56\x6a\x21\xe4\xa2\x17\x05\xc5\x55\x83\xa9\xa3\x04\x59\x2e\x81\x34\x88\xd5\x6a\x6c\x6f\x2c\xed\xaa\x3b\x23\x93\x12\xfc\xee\x65\xdb\x5a\x71\x9d\x5c\xee\xcc\x77\xce\xcc\x1c\xf6\xff\xff\x92\xda\xd8\xa4\x56\xb4\x11\x82\x90\x41\x3a\x40\xef\xf1\xc9\xf0\xe1\xd9\x9b\x1e\x57\xca\xb4\x87\xb7\x75\x83\x25\x64\x21\xc8\x0d\x5e\x23\x24\x3b\xe5\x93\xd6\xd4\x89\x6e\xdd\xd0\x24\xa4\xbd\xe9\x99\x12\xdc\x92\xe6\x36\xa9\x9d\x63\x62\xaf\xfa\x78\x83\x6d\x8f\x3e\x0e\x83\x50\x6f\x1c\x44\x7f\x88\x8f\xe0\x07\x6b\x8d\x5d\x43\x82\xac\x83\xec\x45\x13\x89\xd7\xb5\x98\x36\x10\x9d\x3d\x4f\xe7\xcb\x45\x99\x15\x55\x9e\x5e\x67\xfb\x08\xbe\x0b\x00\x29\x55\x6f\x08\xfd\x0e\xbd\x44\xdb\xf4\xce\x58\x0e\x68\x7a\x3b\xab\x16\x59\xf1\x2d\x2b\xaa\x65\x31\x1f\xe1\xfa\xe2\x5c\xea\x76\x20\x46\x2f\xb5\x0a\xe0\xe5\xc5\x79\x75\xf0\x9d\xa6\x23\xd8\x58\x1a\x41\xd3\x1f\x0f\xff\x9c\x2f\x46\x6a\x3b\xd4\xd8\x22\x4b\x7c\x62\xaf\xa4\xf2\x6b\x0a\xe4\xd7\xe5\x65\x36\xcf\xca\x2a\xbb\x2b\x8b\xb4\x4a\x8b\xab\x17\x81\x76\x96\x95\xb1\xe8\xa5\x1f\x2c\x9b\x0e\x7f\x3b\xdf\xe4\x65\x3a\xcb\xb3\xa2\x2a\x96\x79\x39\x0b\xb7\x9d\xc6\xd5\xa1\x5f\x87\xb8\x06\x42\x0f\xae\x67\xe3\x2c\x81\xb1\xec\xe0\xb0\x82\x76\x76\x65\xd6\xf1\x23\x39\x1b\x89\x90\x19\x4c\x7c\x07\x72\x05\x67\xcf\xe5\xf5\x6d\x15\x76\xaa\xa6\x37\xf9\x97\xfd\x04\xb2\xbb\x59\x29\x1e\x7f\x80\x24\x98\xc4\xf7\xef\x1f\xe0\x1d\xc4\xf7\x1f\x1e\x26\xc7\xbb\x07\x74\x76\xb5\x8f\x5e\xdf\x33\x76\x3e\x85\xde\xbf\xde\x91\xe8\x76\x6f\x54\xdf\x32\x16\x82\x7e\x12\x63\xa7\xb9\x85\x46\x61\xe7\xac\xf4\xd8\x3a\xd5\x9c\x7e\x14\x24\x56\x9e\xc3\xf1\x63\xda\x5b\x8a\x8e\xd4\x7f\x89\x43\xfb\x44\xdf\x38\x8b\x91\xf8\x15\x00\x00\xff\xff\xb9\x79\x57\x7c\xf3\x02\x00\x00") - -func bindataAssetsBootstrapAl2ShBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsBootstrapAl2Sh, - "bindata/assets/bootstrap.al2.sh", - ) -} - -func bindataAssetsBootstrapAl2Sh() (*asset, error) { - bytes, err := bindataAssetsBootstrapAl2ShBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/bootstrap.al2.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x1a, 0x18, 0x7b, 0x3b, 0xc, 0x5a, 0xfe, 0xcd, 0xaf, 0x4a, 0x56, 0xd7, 0xbb, 0x38, 0x7e, 0x27, 0xdf, 0x36, 0xa8, 0x4d, 0x27, 0x12, 0xce, 0x6d, 0x48, 0x6f, 0x84, 0xab, 0x31, 0x57, 0xc9}} - return a, nil -} - -var _bindataAssetsBootstrapHelperSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x7f\x6f\xda\x48\x10\xfd\x7f\x3f\xc5\xdc\x82\x9a\xa0\xcb\xe2\x36\xea\x45\x3a\x24\xa4\x23\xe0\xf6\xac\x12\x83\xc0\x9c\x72\x8a\x22\x6b\xb1\x87\xb0\xc5\xec\x5a\xbb\xe3\x92\x2a\xf2\x77\x3f\xd9\xc4\x89\xc9\xa9\xf9\x6b\x3d\x3f\xde\x9b\x37\xe3\xd1\x74\x7e\xf3\xd6\x4a\x7b\x6b\xe9\xb6\x8c\x39\x24\x10\x06\xd0\x5a\x7c\x54\xd4\x98\xb9\xca\x71\x23\x55\xd6\xd8\xda\x14\xda\x21\x31\xe6\x4c\x61\x13\x04\x0f\x29\xf1\x70\xe7\x12\xca\xbc\x5d\xb1\xc6\x0c\xa9\x8f\xfa\x07\x74\x60\xa3\x32\x84\x83\x55\x44\xa8\x61\xfd\x13\xd6\xc6\x90\x23\x2b\xf3\x1c\x2d\x63\x1d\x58\x39\x84\xe0\x66\xb2\xfc\x71\x09\x64\xe0\x01\x09\xf6\x48\x32\x95\x24\x59\x34\xfb\xe6\x87\x43\xde\x3d\x4f\x0a\x9b\x81\x10\x4e\x65\xa8\x09\xc4\x2d\xcc\x57\x11\x88\xbf\x81\xdf\x0a\x79\x70\x02\x93\x4b\xd1\x80\x04\x99\x1d\x6a\x41\x94\x09\x87\x89\xd1\xa9\x1b\xc0\xd5\xc7\x8f\x1c\xb6\x44\xf9\xc0\xf3\x3e\x5d\xfd\xd9\xbf\xfc\xe3\x73\xff\xf9\xf5\x32\x49\xe8\xc8\x93\xb9\xf2\x6a\x64\x8f\xb3\x4d\xa1\x13\x52\x46\x57\x62\xe2\x86\xf7\xbc\x07\x4f\x0c\xe0\x8d\x92\x77\x24\x0c\xa0\x5b\xeb\xe7\xc0\xdf\x2f\x5d\xc1\x44\x85\xf3\xba\x9f\x38\x2b\x19\x1b\xcd\x83\x78\xe9\x2f\xfe\xf1\x17\xf1\x6a\x31\x1d\xf2\xee\xd3\xa9\xa7\xe4\xec\xfa\xea\x73\x3c\x9e\xae\x96\x91\xbf\x88\xc7\xa3\x2a\xe5\xd4\x53\x72\x16\x84\xcb\x68\x14\x8e\xfd\x38\x98\x54\x23\x6c\xf7\x02\x4a\x3b\x92\x3a\x41\xa1\xd2\x5e\x2b\x73\x1a\x7c\xf1\xc7\xff\x8e\xa7\xfe\xaf\x01\x99\xda\xa0\x48\x7e\x26\x19\xf6\x38\x6b\xea\x4d\xc2\x65\x25\xa1\x65\x0e\x44\xc9\x59\x38\x9b\xf8\x71\x34\x0a\xc2\xa8\x0e\xb7\xcc\x3a\x7c\x33\xba\x8d\xe7\xb3\x49\x1d\x6b\xbe\x5f\x71\xd3\xd1\xb5\x3f\x7d\xc5\x1d\xcd\xf2\x42\x9b\xf4\x28\xa2\xd6\x30\xec\x3e\xfd\x5f\x7c\x79\x21\xb3\x7c\x2b\xfb\xc7\x6d\xec\x2b\xe3\xb5\xda\x6d\x23\x82\x49\xc9\x19\xfb\xb6\xba\xf6\xa7\x7e\x14\x8f\x16\x5f\x97\xc3\x73\x2e\xc4\xb1\x84\x5c\x63\xe6\x86\xa7\xd5\x79\x8f\xdd\xdd\x81\xd0\x70\xda\x4d\xc9\xe1\xfe\x1e\x3e\x7c\x80\x36\xd5\xef\x35\x97\xc5\x07\xe5\x08\xad\x38\x28\xda\x0a\x92\x4a\xd3\x0b\x69\x03\xee\xb1\x0e\x08\xb1\x97\x8f\x22\x37\xa9\x03\xe9\x40\xc2\x78\x1a\x80\xb4\x0f\xc5\xbe\xda\x32\xe5\x20\xc5\xdc\x62\x22\x09\xd3\x0b\xa0\xad\x72\x95\x4f\xc2\xc1\xd8\x9d\xb4\xa6\xd0\x29\x14\x9a\x54\x06\x07\x7c\xcd\x04\x57\xe4\xb9\xb1\x04\x1b\x63\x61\x2f\x1f\xe7\x26\x75\x73\xb4\xa1\x49\xf1\xb5\x8b\x66\xee\xef\xb4\xd0\x08\x1b\xb6\xb3\x7b\x2f\x63\xf3\x6f\xa3\xc5\xe8\x38\x3c\xde\x7d\x6a\xc3\xef\xfe\xba\xaf\xe6\xdb\x6c\x45\x38\xba\xf1\xdb\x5b\x52\xd9\x25\x7f\xe1\x19\xcf\xc2\x2f\xc1\xd7\xe1\x59\x7d\x48\xaa\x0b\x62\x35\x12\xba\xe6\x98\x34\xaf\x48\x8c\xde\xa8\x87\xfe\x77\x67\xf4\xd9\x1b\x11\x27\x14\xa7\xb7\x48\xe0\x23\x59\xf9\x8c\x8a\x6e\xe6\x71\x85\xac\x01\xc3\x33\x8f\xf6\xf9\x09\xfd\x73\xda\x78\x16\x56\xbf\xc8\x5f\xc4\x8b\x55\x18\x05\xcf\xea\xdf\x3a\x07\x22\x35\xc9\x0e\x6d\x5a\x72\xe8\x40\x8a\x1b\x59\x64\xc7\x99\xcb\xec\x12\xbe\x17\x8e\x40\x69\x48\xa4\xc3\x0b\xd0\x86\xa0\x70\x98\x56\x9e\x62\x5d\x68\x2a\xd8\x7f\x01\x00\x00\xff\xff\xf7\xbf\x51\x00\x7b\x05\x00\x00") - -func bindataAssetsBootstrapHelperShBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsBootstrapHelperSh, - "bindata/assets/bootstrap.helper.sh", - ) -} - -func bindataAssetsBootstrapHelperSh() (*asset, error) { - bytes, err := bindataAssetsBootstrapHelperShBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/bootstrap.helper.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x8c, 0xa1, 0xd0, 0x1e, 0x75, 0xe, 0x4b, 0x2f, 0x73, 0xb3, 0x29, 0x78, 0xe7, 0x17, 0x48, 0xff, 0x1e, 0x0, 0xa7, 0xca, 0xe1, 0x49, 0x7b, 0x15, 0x9c, 0xb8, 0xf8, 0x11, 0x53, 0x96, 0x8a}} - return a, nil -} - -var _bindataAssetsBootstrapLegacyAl2Sh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x93\x61\x4f\x02\x47\x10\x86\xbf\xef\xaf\x98\x1e\x17\x23\xa9\xcb\xa9\xb1\x26\xa2\x34\xa1\xdc\x99\x5e\x8a\x40\x0a\xb6\x1a\x63\x2f\xcb\xde\x50\x36\x2e\xbb\x97\xdb\x01\x35\xe4\xfa\xdb\x9b\xc5\xc3\x82\x5a\x3f\xc1\xcc\xbc\xb3\xf3\xee\x33\xb7\x8d\x1f\xa2\xa9\x32\xd1\x54\xb8\x39\x6b\xc0\x64\x18\x0f\x21\xc6\xa2\x44\x29\x08\xf3\x23\x78\x56\x5a\xc3\x14\xa1\xc4\x85\x5d\x61\x0e\xce\x5a\xc3\x98\x43\x02\x6e\x01\xcb\x12\x5f\x14\x6d\xc3\x42\x15\x38\x13\x4a\x6f\x63\x63\x97\xc6\x21\x31\x36\x5b\x1a\x49\xca\x1a\xf8\x1b\x29\x5b\x88\x97\xac\xb0\xb9\x3b\x6c\xc2\x9a\x01\x3c\xcf\x95\xf6\xc7\x8b\x1c\x94\x71\x24\x8c\xc4\x8c\x5e\x0b\x04\xaf\xb9\x84\xdc\x32\x00\x00\x35\x03\x78\x78\x80\x20\x5c\xef\x89\xaa\x00\x3a\x1d\x9f\x3d\xa9\x02\x78\x7c\x84\x83\x83\x5a\xe5\x9b\x7d\xf1\x1f\xf8\xeb\xe1\x98\x5f\x3c\xfe\x18\xfa\xf2\x25\xd0\x1c\xcd\xe6\x40\x00\x94\x73\x0b\xb5\xb2\x4e\x95\x48\xcb\xf2\xad\x3e\x53\x0c\x20\xb7\x06\xe1\x0a\x22\x24\x19\xe1\x93\x93\xa4\xa3\xad\xfb\xd6\x42\x14\xac\x62\xac\x01\xb7\x0e\x21\xbd\x89\xc7\xab\x53\x20\xeb\x6f\x08\x0b\x24\x91\x0b\x12\x6c\x32\xfc\x2d\x19\x74\x82\xf0\x50\x2e\x4b\x0d\x9c\x3b\xa5\xd1\x10\xf0\x3b\x18\xdd\x4e\x80\xff\x0a\xc1\x1d\x17\xcf\x8e\xa3\x3c\xe5\xdb\x26\x4e\xf6\x09\x0d\x27\xd2\xdc\xa1\xb4\x26\x77\x6d\x38\x3f\x3e\x0e\x60\x4e\x54\xb4\xa3\xe8\xe4\xfc\xa2\x75\xfa\xd3\x59\xab\xfe\x8d\xb4\x20\x74\x14\x89\x42\x45\x9b\xce\x66\xf0\x01\x77\x7d\x6e\x8d\xfb\x83\x93\x6f\x2c\xb4\x21\xdc\xf8\x0f\x20\xf8\x7e\xb4\x6f\xe3\xbe\x2f\x0a\x4f\x02\xcf\x64\x30\x8c\x93\x2c\x1d\xf9\x8b\xef\x3a\x00\x6d\xa5\xd0\x5c\x15\xab\xb3\x66\xc0\xd2\xc1\x78\xd2\x1d\xf4\x92\x2c\x8d\x3f\x09\xb7\x3b\xe6\x2a\xdf\x55\x4e\xee\x47\xc9\xff\x6b\xfd\xf7\xd0\x0c\x58\xf7\xcf\x71\x36\x4e\x7e\xff\x23\xed\x25\xe3\x2c\x1e\xde\x74\xd3\xc1\xa7\x1e\x87\xe5\x4a\x49\x74\x51\x6e\x17\x42\x79\x64\x8c\x39\xbb\x2c\x25\xee\xed\xfa\x69\x39\x45\x8d\xd4\x42\xb3\x82\x06\xd0\x5c\x39\x90\xc2\x80\x5d\x61\x59\xaa\x1c\xe1\xa6\x7b\x97\x8d\x86\xf1\x98\xfd\x67\xb1\x9f\x5e\x27\xbd\xfb\x5e\xff\x1b\x9f\x5a\xcd\x90\xcb\x57\xa9\xbd\xdb\x0d\xaa\x7e\xf7\x97\xa4\x3f\xee\x04\xe1\x7a\x27\xac\x8e\x8c\xcd\xdf\xd4\x1b\x71\x27\x5c\x7f\x9e\x52\x79\xe7\x52\x10\xfc\xfc\xa5\xf1\x0d\xf0\x8d\xfd\xab\xab\x64\x78\xfd\xbe\x98\x7a\x50\x3a\xaa\xf6\xd6\xb0\x33\x21\x8d\xab\x0f\xdc\x77\x8a\x3e\xae\xbe\x04\x1d\xae\xbf\xc8\x56\x6c\x0b\xaa\x13\xae\xb7\x7f\xdb\xbc\xe6\x53\xbf\x27\xff\x68\xf7\x07\x04\xcd\x6a\x0f\xcf\x3e\x1d\xe6\xef\xc3\xdc\xab\x23\x5c\x48\xd2\x90\x0b\x5c\x58\xc3\x4b\xd4\x56\xe4\x3b\x79\x34\x62\xaa\x11\x6a\x22\x3b\x05\x47\xa2\xa4\xf7\xfc\xbf\x01\x00\x00\xff\xff\x46\x01\xeb\xc2\x06\x05\x00\x00") - -func bindataAssetsBootstrapLegacyAl2ShBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsBootstrapLegacyAl2Sh, - "bindata/assets/bootstrap.legacy.al2.sh", - ) -} - -func bindataAssetsBootstrapLegacyAl2Sh() (*asset, error) { - bytes, err := bindataAssetsBootstrapLegacyAl2ShBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/bootstrap.legacy.al2.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0xb1, 0x58, 0xf5, 0xe6, 0x40, 0x92, 0xbe, 0xa6, 0x27, 0xc2, 0xfc, 0xbd, 0xc2, 0xe8, 0x54, 0x5e, 0x40, 0x37, 0x77, 0x73, 0x87, 0x9, 0xf, 0x97, 0xc4, 0xbc, 0x10, 0x5, 0x1b, 0x44, 0xf8}} - return a, nil -} - -var _bindataAssetsBootstrapLegacyUbuntuSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\xf1\x6f\x1a\xb9\x12\xfe\xdd\x7f\xc5\xbc\x0d\xea\x0b\x7a\x31\xdb\xa4\x7d\x95\x9a\x96\xd3\x71\x81\xde\xa1\xa6\x10\x15\x72\xd7\x2a\xca\x21\x63\x0f\x59\x0b\xaf\xbd\xb2\x67\xa1\x51\xc4\xfd\xed\x27\x2f\xbb\x84\xd0\x36\x3f\xb1\xf6\xf7\xcd\xf8\xf3\xf8\x9b\xe1\xe8\x3f\xe9\x5c\xdb\x74\x2e\x42\xc6\x8e\x60\x3a\xee\x8f\xa1\x8f\x85\x47\x29\x08\xd5\x09\xac\xb5\x31\x30\x47\xf0\x98\xbb\x15\x2a\x08\xce\x59\xc6\x02\x12\x70\x07\xe8\x3d\x7e\xd3\xd4\x2c\x0b\x5d\xe0\x42\x68\xd3\xac\xad\x2b\x6d\x40\x62\x6c\x51\x5a\x49\xda\x59\xb8\x43\x9a\xe5\xe2\xdb\xac\x70\x2a\x1c\xb7\xe1\x81\x01\xac\x33\x6d\x62\x7a\xa1\x40\xdb\x40\xc2\x4a\x9c\xd1\x7d\x81\x10\x39\xef\x40\x39\x06\x00\xa0\x17\x00\x37\x37\x90\xb4\x1e\x9e\x90\x36\x09\x74\xbb\x71\xf7\x74\x93\xc0\xed\x2d\xbc\x78\x51\xb3\x62\x70\x04\xff\x81\xbf\x6f\x5e\xf2\xb7\xb7\xff\x6b\x45\xf8\x1d\x50\x86\xb6\x4a\x08\x80\x32\x73\x50\x33\xdf\xd5\x7b\x1e\xa9\xf4\x5b\xc2\x42\x33\x00\xe5\x2c\xc2\x7b\x48\x91\x64\x8a\xcb\x20\xc9\xa4\x8d\xfc\x4e\x2e\x0a\xb6\x61\xec\x08\xae\x03\xc2\xf0\x53\x7f\xb2\x3a\x03\x72\xf1\x8a\x90\x23\x09\x25\x48\xb0\xe9\xf8\xe3\x60\xd4\x4d\x5a\xc7\xb2\xf4\x06\x38\x0f\xda\xa0\x25\xe0\x5f\xe0\xea\x7a\x0a\xfc\x0f\x48\xbe\x70\xb1\x0e\x1c\xe5\x19\x6f\x82\x38\xb9\x25\x5a\x4e\x64\x78\x40\xe9\xac\x0a\xe7\xf0\xe6\xe5\xcb\x04\x32\xa2\xe2\x3c\x4d\x4f\xdf\xbc\xed\x9c\xfd\xff\x75\xa7\xfe\x4d\x8d\x20\x0c\x94\x8a\x42\xa7\x55\x64\x3b\x39\xa8\x77\x9d\xb7\xae\xf7\x81\x92\x67\x24\x9c\x43\xab\xd2\x9f\x40\xf2\xfc\xd1\x31\x8c\xc7\xb8\xb4\x75\x9a\xc4\x9a\x8c\xc6\xfd\xc1\x6c\x78\x15\x2f\xbe\xaf\x00\x8c\x93\xc2\x70\x5d\xac\x5e\xb7\x13\x36\x1c\x4d\xa6\xbd\xd1\xc5\x60\x36\xec\x7f\x47\x6c\x1e\x99\x6b\xb5\xcf\x9c\x7e\xbd\x1a\xfc\x9c\x1b\x0d\xd1\x4e\x58\xef\xaf\xc9\x6c\x32\xf8\xfc\xe7\xf0\x62\x30\x99\xf5\xc7\x9f\x7a\xc3\xd1\x77\x31\x01\xfd\x4a\x4b\x0c\xa9\x72\xb9\xd0\xb1\x64\x2c\xb8\xd2\x4b\x7c\xf2\xd4\xcb\x72\x8e\x06\xa9\x83\x76\x05\x47\x40\x99\x0e\x20\x85\x05\xb7\x42\xef\xb5\x42\xf8\xd4\xfb\x32\xbb\x1a\xf7\x27\x8c\x3d\x4a\xbc\x1c\x7e\x18\x5c\x7c\xbd\xb8\x7c\x46\xa7\xd1\x0b\xe4\xf2\x5e\x9a\xa8\x96\x49\x41\xf0\xcb\x0f\x8f\xad\xaa\x55\x1d\xfe\xfe\xfd\x60\xfc\x61\x57\xd5\xd6\x43\xfd\xb5\x79\x52\xc3\xd6\xc3\xde\x6a\x73\x50\xb4\x3d\x30\xae\x37\xac\xd1\xde\x6d\x3d\x34\x9f\xe7\xbc\x56\x5c\x3b\x3c\xf6\xd1\xd3\xa8\xa4\xbd\x61\x51\x09\x0b\x56\x14\x20\x8c\x16\x01\x6a\xb5\x1c\x97\xa1\x53\x7f\x37\x7b\x87\x34\x49\x66\x47\x93\x64\x9a\xbd\x2d\x2d\x90\x2b\xf6\x93\xb1\x70\x1f\x08\xf3\xc8\xf3\x18\x90\x78\x9c\x2c\xa8\x18\x3b\x66\x00\xdb\x41\x75\x1e\xdb\x39\x20\x84\xcc\x95\x46\xc5\x29\x65\x9c\x5b\xa2\x02\x41\x80\x2b\xf4\xf7\x40\x3a\xc7\x26\x29\x04\x12\x9e\x02\x94\xc5\x49\x95\x61\x9d\x69\x99\x81\x0e\xb0\xce\x04\xc1\x1a\x41\x39\xd0\x16\x7a\x97\x67\x70\xbc\xc3\xe6\x22\xa0\x02\x67\xa1\x30\x42\x5b\xd8\x6a\x52\xdb\x04\xc2\x2a\xc8\x51\x58\x8a\x6d\x3f\x8f\x03\xcb\x93\x98\x1b\x8c\xcb\xdc\x05\x6a\xd8\xa0\x74\x20\xef\x42\xfb\x04\xe6\x25\x81\xa6\xff\x86\x2a\xde\x3a\x02\x69\x50\x78\xc8\xdc\x3a\x06\x19\x27\x54\x7d\xa5\x85\x77\xf9\xa3\xf0\x58\x9f\xb5\xa6\xcc\x95\x04\x99\x58\x69\x7b\x57\x25\x20\x07\xb2\x0c\xe4\x72\x1d\x30\xc6\x6d\x89\x9a\x02\x9a\x05\x03\x78\xc6\xd1\x3b\x6b\x3d\x4f\xfb\x29\xa1\x31\x75\xc5\x60\x00\x0b\x23\xee\x42\xf7\xb8\x1a\x9c\x89\x75\x0a\xb9\x2e\xf6\x7c\x9a\x6c\x81\x5c\x7c\xe3\xd1\x58\x7b\x9e\x6b\xa0\x2a\xc6\x88\x39\x9a\xd0\xc4\x5d\xf6\x7e\x1b\x5c\x4e\x36\x27\xc2\x14\x99\xe8\x6c\x0f\xee\x68\x97\xee\xcd\x86\x03\xcf\x9f\x6c\xb3\xe8\x05\x56\xdd\xb5\x8f\xee\xda\xb2\x39\xb0\x70\x8a\x6b\xbb\xf0\x82\x4b\x67\x49\x68\x8b\x9e\xeb\x5c\xdc\xc5\xa8\x38\x41\x06\x1f\x27\xb3\xc1\xc5\xe7\x59\xef\xe2\x62\x7c\x3d\x9a\x6e\x3a\x6a\xe9\x3b\x28\x7d\x67\x0b\xf7\x07\x1f\x7a\xd7\x97\xd3\xd9\xe7\xc1\xef\xc3\xf1\x68\x53\xef\x1e\x8c\x9d\x4d\x2c\x57\x5a\x88\x32\xe0\xf9\xab\xce\xab\xe8\xea\x79\xa9\x8d\xea\x9c\xd6\x22\xa4\x71\xa5\xe2\x85\x77\x2b\xad\xd0\x77\xc5\x3a\x34\x80\xd5\x7c\xae\x2d\x57\xda\x77\x53\x57\x50\x2a\xad\x8e\x7f\xd3\x7b\xb0\x74\x76\xb1\xc5\xe3\xbb\x44\xdc\x22\x75\x54\xc3\xd8\x5d\xca\x97\x36\x76\x41\x57\x39\xb9\x44\xdf\x94\x1b\x69\xed\xfc\x92\x17\xa6\xbc\xd3\xb6\x2b\xad\xae\x01\x8f\x77\x3a\x10\x7a\x1e\x4b\xd9\x25\x5f\xe2\x21\x10\x7d\xc8\x63\x6e\xda\xbd\xd4\xb4\x37\x1c\x4d\x77\x4f\x59\x75\xb5\xb3\x0b\x7d\xd7\x3d\xf4\xd4\x76\xbb\x73\x2f\x72\xf3\xa8\xf3\x47\xc4\x68\xbe\x86\xd5\x8e\x06\xdb\x8e\x88\xc7\xd1\x12\x6b\x19\xe7\x53\x65\xbc\x9b\x5f\x6f\x37\x09\x6b\xb3\x66\x90\x08\xff\x84\xc7\xfe\x0d\x00\x00\xff\xff\x76\x63\xcb\x48\xe3\x08\x00\x00") - -func bindataAssetsBootstrapLegacyUbuntuShBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsBootstrapLegacyUbuntuSh, - "bindata/assets/bootstrap.legacy.ubuntu.sh", - ) -} - -func bindataAssetsBootstrapLegacyUbuntuSh() (*asset, error) { - bytes, err := bindataAssetsBootstrapLegacyUbuntuShBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/bootstrap.legacy.ubuntu.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0xdc, 0xce, 0x7f, 0x6d, 0x30, 0x36, 0x5b, 0x8b, 0xc2, 0x38, 0x8d, 0x9e, 0xe4, 0xf8, 0x27, 0xd5, 0x77, 0x77, 0x8b, 0xaf, 0x59, 0xb3, 0x1a, 0xcd, 0x96, 0xe1, 0xcd, 0xc6, 0x2b, 0x19, 0x6b}} - return a, nil -} - -var _bindataAssetsBootstrapUbuntuSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xdf\x6b\xdb\x30\x10\xc7\xdf\xf5\x57\xdc\xb4\x82\x61\x20\x6b\x7b\xdd\xc3\x20\xeb\xbc\x52\xd6\x66\x23\x71\xa1\x90\x05\x23\x2b\x17\x5b\x89\x23\x69\x3a\x39\x04\x82\xff\xf7\x21\x86\xb3\x34\xc9\xe3\xdd\xf7\xc7\x7d\x6c\xbd\x7f\x27\x6b\x63\x65\xad\xa8\x65\x8c\x30\x82\x70\x80\x21\xe0\xc1\xc4\x71\xf4\xc6\xe3\x5a\x99\x6e\x9c\xad\xeb\x2d\x61\x64\x8c\x5c\x1f\x34\x82\xdc\xab\x20\x3b\x53\x4b\xdd\xb9\x7e\x25\x49\x07\xe3\x23\x49\xdc\x92\x8e\x9d\xac\x9d\x8b\x14\x83\xf2\x79\x8b\x9d\xc7\x90\xa7\x43\xa8\x5b\x07\xfc\x9f\xe3\x33\x84\xde\x5a\x63\x1b\x90\x18\x75\x8a\xfd\xcf\x70\x76\xbd\xcb\xa9\x05\x7e\x77\xbc\x7f\x7a\x99\x97\xc5\xac\x9a\x4e\x9e\x8b\x81\xc3\x6f\x06\x20\xc4\xca\x92\xd0\x5d\x4f\x11\x83\x30\xfe\xdc\xf6\x6d\x3a\x3f\xb9\xb6\x7d\x8d\x1d\x46\x81\x87\x18\x94\x50\xa1\xa1\xe4\xfc\xf1\xf2\xb5\x78\x2a\xca\xaa\x78\x2d\x67\x93\x6a\x32\x7b\x98\x0f\xfc\x92\x74\x87\xa1\x49\xa4\x3d\x61\x00\xe7\xa3\x71\x96\xc0\xd8\xe8\x60\xec\xd4\xce\xae\x4d\x93\x6f\xc8\x59\xce\x12\x2e\x64\x61\x07\x62\x0d\x77\xc7\xf2\xf9\x57\x95\x8e\x54\xf7\x3f\xa7\xdf\x87\x0c\x8a\xd7\xc7\x92\x6d\xfe\x80\x20\xc8\xf2\xc5\xc7\x25\x7c\x80\x7c\xf1\x69\x99\x9d\xc3\x24\xeb\xe3\xc3\xc0\xaf\x01\x4f\xca\x97\xa4\xbd\xed\xe6\x6c\xb7\xbf\xb1\xbd\x55\x7c\xf5\x16\x48\x51\x85\x98\x3e\xf2\xf4\x9b\xb6\xc4\x19\x59\xe5\x47\xf1\x5c\xb9\x88\xaf\x9c\x45\xce\xfe\x06\x00\x00\xff\xff\xad\x08\x49\xa5\x55\x02\x00\x00") - -func bindataAssetsBootstrapUbuntuShBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsBootstrapUbuntuSh, - "bindata/assets/bootstrap.ubuntu.sh", - ) -} - -func bindataAssetsBootstrapUbuntuSh() (*asset, error) { - bytes, err := bindataAssetsBootstrapUbuntuShBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/bootstrap.ubuntu.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x94, 0xc2, 0xe1, 0x4f, 0x4c, 0xb5, 0x4d, 0x57, 0x4a, 0xa2, 0x51, 0x56, 0xf7, 0x8a, 0x83, 0xfe, 0xe7, 0x9c, 0xf3, 0x3f, 0x7b, 0xb6, 0x17, 0xc1, 0x29, 0x5b, 0x9c, 0x33, 0x76, 0xed, 0x28}} - return a, nil -} - -var _bindataAssetsEfaAl2Sh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xd0\x4d\x6a\xc3\x40\x0c\x05\xe0\xbd\x4e\xa1\xd2\xb5\x46\x25\xdd\x15\xba\xea\x01\x7a\x84\xa0\xa4\x1a\x7b\xc0\xf3\xd3\x91\x8c\x93\x9c\xbe\x38\x4d\xe8\xc2\x34\x9b\x81\x37\x7c\x12\x3c\x3d\x3f\xf1\x21\x15\x3e\x88\x8d\x00\xa6\x8e\x54\x51\x7b\xd7\x53\xf2\x7b\x6c\xa9\x69\x94\x34\xdd\x73\xa9\x73\x31\x75\x80\xf3\x9c\x31\x15\x73\x99\x26\xa4\x33\x2e\x83\x3a\xac\x0f\xd2\x37\x12\x79\xca\x5a\x67\x7f\xdf\xbd\xe0\xe8\xde\xec\x8d\xd9\x5e\x69\x36\x5a\xd4\x9c\x76\x41\xb2\x5c\x6a\x91\xc5\xc2\xb1\x66\x96\xc5\x48\xa3\xd0\x6d\x9f\xf6\xed\x0f\x4d\xe2\x6a\x1e\x5c\x7a\x18\x2e\x48\x9f\xc8\x9e\xdb\xd6\xdd\x00\xb8\x74\xa4\x53\x7c\xac\x90\x3e\xae\x00\x8e\x5f\xff\x40\x08\xac\x51\xf6\x7f\x83\x36\xae\x6d\x69\x00\xae\xcd\xf9\xb7\xc6\x4a\xae\x87\x8c\x69\x9f\x4a\xac\x48\x0d\x35\x0a\xfc\x04\x00\x00\xff\xff\x8f\x52\xee\x9a\x5f\x01\x00\x00") - -func bindataAssetsEfaAl2ShBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsEfaAl2Sh, - "bindata/assets/efa.al2.sh", - ) -} - -func bindataAssetsEfaAl2Sh() (*asset, error) { - bytes, err := bindataAssetsEfaAl2ShBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/efa.al2.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xd9, 0x1d, 0x49, 0x21, 0x82, 0x43, 0xb0, 0xeb, 0x4d, 0xa2, 0x59, 0x42, 0xc6, 0xba, 0xc9, 0xb5, 0x60, 0xcd, 0x1d, 0x96, 0x18, 0x48, 0x80, 0x1b, 0x66, 0xda, 0x3e, 0x7, 0x93, 0xdb, 0x9e}} - return a, nil -} - -var _bindataAssetsEfaManagedBoothook = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x4d\x4e\xc4\x30\x0c\x85\xf7\x39\x85\x2f\xe0\x04\x0d\x3b\x24\x56\x1c\x80\x23\x54\xa6\xe3\xb4\x91\x9a\x1f\x62\x47\x65\xe6\xf4\x28\xed\x88\x0d\xad\x60\x67\xf9\x3d\x7f\xcf\x7a\xe3\x92\xdb\x15\x43\x0a\x8a\x85\x2b\xe4\x34\x32\xdc\x5a\x1c\xd6\x89\xb5\x0f\x10\x92\x28\x2d\x0b\xe0\x0d\xfa\xce\x1c\x1d\x74\x61\x60\x4f\xdb\x00\xf8\x09\x88\x1a\x22\xe7\xa6\xaf\x97\x27\x98\x55\x8b\xbc\x38\x27\xcf\xd8\x04\x57\x16\xc5\x8b\xa5\x48\xf7\x9c\x68\x15\x3b\xe6\xe8\x68\x15\x64\x4f\xf8\x08\xe3\xfa\x7b\x83\x0b\x29\x8b\x5a\xa5\x6a\xa7\x3b\xe0\x3b\x38\x8d\xe5\x2f\x9f\x39\xfc\x57\xa9\x6e\xef\x2a\x55\xc0\x2f\xff\x2f\x12\xe0\xdb\xe6\x33\xa5\xc9\x7c\x3d\x39\x39\x4c\x7b\xa8\x5b\xa2\x75\xec\x69\xf8\xf1\x5b\x99\x7b\xb1\x38\x99\x92\xcb\x19\xf3\x10\xba\x63\x7c\x06\x97\x8b\xba\xbd\xcd\xce\x76\x1f\x21\x39\x1f\x76\x0d\x4b\xf7\x99\xef\x00\x00\x00\xff\xff\xd7\xd4\x31\xc2\xe4\x01\x00\x00") - -func bindataAssetsEfaManagedBoothookBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsEfaManagedBoothook, - "bindata/assets/efa.managed.boothook", - ) -} - -func bindataAssetsEfaManagedBoothook() (*asset, error) { - bytes, err := bindataAssetsEfaManagedBoothookBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/efa.managed.boothook", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x40, 0xf1, 0xae, 0x67, 0xa7, 0xe, 0xc, 0x31, 0x61, 0x86, 0x41, 0x8b, 0xd1, 0x55, 0x3f, 0x84, 0xbd, 0x4c, 0xdd, 0x84, 0xc9, 0xee, 0x9d, 0x36, 0xda, 0x8f, 0x6c, 0xbc, 0x6a, 0xaf, 0xed}} - return a, nil -} - -var _bindataAssetsInstallSsmAl2Sh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xca\x41\x0a\x02\x31\x0c\x05\xd0\x7d\x4f\x11\x71\x5d\xe6\x4c\xa9\x44\x0d\xa4\xe9\xd0\xff\x07\xac\xa7\x77\x35\x2b\x61\x96\x0f\xde\xfd\xb6\x35\xcf\xad\x29\xde\xa5\xc0\x28\x75\x88\xcd\x69\x1f\xe7\xc9\xdd\x77\x7b\xaa\xc7\xe9\x1c\x47\xc2\x58\xca\x3a\xba\x78\x82\x1a\x21\x75\x89\x76\xfd\x8e\xac\x40\xaf\xfa\xb2\x64\xc1\x02\xad\x3f\x18\x62\xa9\x2d\xec\x6a\x80\x3a\xf9\x1f\x7e\x01\x00\x00\xff\xff\x93\x2c\xf6\x43\x9f\x00\x00\x00") - -func bindataAssetsInstallSsmAl2ShBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsInstallSsmAl2Sh, - "bindata/assets/install-ssm.al2.sh", - ) -} - -func bindataAssetsInstallSsmAl2Sh() (*asset, error) { - bytes, err := bindataAssetsInstallSsmAl2ShBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/install-ssm.al2.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0xf9, 0xf8, 0x5e, 0xb9, 0xcf, 0xfb, 0x94, 0xb4, 0x85, 0xa3, 0x62, 0xf0, 0x3b, 0x88, 0x44, 0xe3, 0x84, 0xfa, 0x85, 0x39, 0xdb, 0xed, 0xa2, 0x6a, 0x1, 0x7b, 0xe5, 0x49, 0x21, 0xef, 0x3d}} - return a, nil -} - -var _bindataAssetsKubeletYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xc1\xca\xdb\x30\x10\x84\xef\x7a\x8a\x85\x5e\x8b\xed\xb4\x04\x5a\xdd\xd2\x84\xf6\xd0\x40\xa0\x71\xdb\xf3\x5a\x1a\x37\xc2\xb2\x36\x48\xeb\xa4\xed\xd3\x97\xd8\xee\x0f\x81\x1f\x9d\x86\x99\x61\x3e\x49\x6f\xa8\x3d\x1d\x4e\x74\xc0\x35\xc3\xb1\xc2\xbf\xa5\x7b\x88\x91\x3a\x50\xc6\x28\x37\x78\x2a\x22\xc9\x0c\x21\x79\x4b\x5f\xa7\x0e\x11\xba\x97\xd4\x87\x5f\x53\x66\x0d\x92\x0c\x5f\xc3\x0f\xe4\x12\x24\x59\x1a\x96\x40\xe5\xe6\x44\x35\x7c\x28\x55\x90\xfa\xb6\xe9\xa0\xbc\x31\x86\xbd\xcf\x28\xc5\x52\x53\xcd\xc7\xb8\x38\x15\x45\x3e\xc8\xc8\x21\x59\x5a\x65\x15\xc5\x71\x34\x86\x27\xbd\x20\x69\x70\xf3\x90\x35\x44\x9c\x24\xfd\x19\x65\x2a\x0f\x41\x84\xc4\x5d\x84\xb7\xd4\x73\x2c\x30\x44\x77\x74\x17\x91\x61\x71\x1d\xbb\x0b\xda\xf6\x68\xe9\xdd\xd8\x94\xe7\x82\xe6\xe9\x91\xff\xbd\x6d\x3e\xae\xe1\x18\x90\x74\xbf\xfb\x1c\x22\x2c\xd5\x50\x57\x63\x28\x4e\x63\xed\xb8\x72\x59\x17\x1a\xc9\xe1\xef\x0b\xcc\x28\x1e\x96\x7e\x2e\x93\xaf\x8e\xef\xd6\x0a\xfc\x8c\xb1\xfd\x8f\x31\x9b\xdf\x13\x3f\xdb\xef\x9b\x62\x4c\x41\xbe\x21\xb7\xc7\xf3\x27\x11\x2d\x9a\xf9\xba\xc2\x9a\x1e\xac\x53\xc6\x17\x56\xcc\xd7\xff\x26\xca\x8a\xf5\x4b\xce\x73\x6d\x8f\xac\xa1\x7f\xbc\x17\xd6\xd6\xbf\x00\x00\x00\xff\xff\x46\x42\xbb\xf2\xe0\x01\x00\x00") - -func bindataAssetsKubeletYamlBytes() ([]byte, error) { - return bindataRead( - _bindataAssetsKubeletYaml, - "bindata/assets/kubelet.yaml", - ) -} - -func bindataAssetsKubeletYaml() (*asset, error) { - bytes, err := bindataAssetsKubeletYamlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "bindata/assets/kubelet.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x31, 0x7a, 0x5b, 0xa3, 0xbf, 0x93, 0x44, 0x7, 0x84, 0xfb, 0x4e, 0x10, 0x44, 0x47, 0xaa, 0xd1, 0x9, 0x71, 0x33, 0xdc, 0x75, 0x6b, 0x7c, 0x1c, 0x25, 0x25, 0xfa, 0x82, 0x6d, 0xc4, 0xf}} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// AssetString returns the asset contents as a string (instead of a []byte). -func AssetString(name string) (string, error) { - data, err := Asset(name) - return string(data), err -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// MustAssetString is like AssetString but panics when Asset would return an -// error. It simplifies safe initialization of global variables. -func MustAssetString(name string) string { - return string(MustAsset(name)) -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetDigest returns the digest of the file with the given name. It returns an -// error if the asset could not be found or the digest could not be loaded. -func AssetDigest(name string) ([sha256.Size]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s can't read by error: %v", name, err) - } - return a.digest, nil - } - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s not found", name) -} - -// Digests returns a map of all known files and their checksums. -func Digests() (map[string][sha256.Size]byte, error) { - mp := make(map[string][sha256.Size]byte, len(_bindata)) - for name := range _bindata { - a, err := _bindata[name]() - if err != nil { - return nil, err - } - mp[name] = a.digest - } - return mp, nil -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "bindata/assets/10-eksctl.al2.conf": bindataAssets10EksctlAl2Conf, - "bindata/assets/bootstrap.al2.sh": bindataAssetsBootstrapAl2Sh, - "bindata/assets/bootstrap.helper.sh": bindataAssetsBootstrapHelperSh, - "bindata/assets/bootstrap.legacy.al2.sh": bindataAssetsBootstrapLegacyAl2Sh, - "bindata/assets/bootstrap.legacy.ubuntu.sh": bindataAssetsBootstrapLegacyUbuntuSh, - "bindata/assets/bootstrap.ubuntu.sh": bindataAssetsBootstrapUbuntuSh, - "bindata/assets/efa.al2.sh": bindataAssetsEfaAl2Sh, - "bindata/assets/efa.managed.boothook": bindataAssetsEfaManagedBoothook, - "bindata/assets/install-ssm.al2.sh": bindataAssetsInstallSsmAl2Sh, - "bindata/assets/kubelet.yaml": bindataAssetsKubeletYaml, -} - -// AssetDebug is true if the assets were built with the debug flag enabled. -const AssetDebug = false - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"}, -// AssetDir("data/img") would return []string{"a.png", "b.png"}, -// AssetDir("foo.txt") and AssetDir("notexist") would return an error, and -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - canonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(canonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} - -var _bintree = &bintree{nil, map[string]*bintree{ - "bindata": {nil, map[string]*bintree{ - "assets": {nil, map[string]*bintree{ - "10-eksctl.al2.conf": {bindataAssets10EksctlAl2Conf, map[string]*bintree{}}, - "bootstrap.al2.sh": {bindataAssetsBootstrapAl2Sh, map[string]*bintree{}}, - "bootstrap.helper.sh": {bindataAssetsBootstrapHelperSh, map[string]*bintree{}}, - "bootstrap.legacy.al2.sh": {bindataAssetsBootstrapLegacyAl2Sh, map[string]*bintree{}}, - "bootstrap.legacy.ubuntu.sh": {bindataAssetsBootstrapLegacyUbuntuSh, map[string]*bintree{}}, - "bootstrap.ubuntu.sh": {bindataAssetsBootstrapUbuntuSh, map[string]*bintree{}}, - "efa.al2.sh": {bindataAssetsEfaAl2Sh, map[string]*bintree{}}, - "efa.managed.boothook": {bindataAssetsEfaManagedBoothook, map[string]*bintree{}}, - "install-ssm.al2.sh": {bindataAssetsInstallSsmAl2Sh, map[string]*bintree{}}, - "kubelet.yaml": {bindataAssetsKubeletYaml, map[string]*bintree{}}, - }}, - }}, -}} - -// RestoreAsset restores an asset under the given directory. -func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - return os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) -} - -// RestoreAssets restores an asset under the given directory recursively. -func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil -} - -func _filePath(dir, name string) string { - canonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(canonicalName, "/")...)...) -} diff --git a/pkg/nodebootstrap/legacy/al2.go b/pkg/nodebootstrap/legacy/al2.go index 00dd292a48..48aca9ff98 100644 --- a/pkg/nodebootstrap/legacy/al2.go +++ b/pkg/nodebootstrap/legacy/al2.go @@ -7,9 +7,16 @@ import ( "github.com/pkg/errors" api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" "github.com/weaveworks/eksctl/pkg/cloudconfig" + "github.com/weaveworks/eksctl/pkg/nodebootstrap/assets" "github.com/weaveworks/eksctl/pkg/utils/kubeconfig" + + //For go:embed + _ "embed" ) +//go:embed scripts/bootstrap.legacy.al2.sh +var bootstrapLegacyAl2Sh string + type AL2Bootstrapper struct { clusterSpec *api.ClusterConfig ng *api.NodeGroup @@ -30,7 +37,7 @@ func (b AL2Bootstrapper) UserData() (string, error) { return "", err } - var scripts []string + var scripts []script for _, command := range b.ng.PreBootstrapCommands { config.AddShellCommand(command) @@ -40,9 +47,9 @@ func (b AL2Bootstrapper) UserData() (string, error) { config.AddShellCommand(*b.ng.OverrideBootstrapCommand) } else { if api.IsEnabled(b.ng.EFAEnabled) { - scripts = append(scripts, "efa.al2.sh") + scripts = append(scripts, script{name: "efa.al2.sh", contents: assets.EfaAl2Sh}) } - scripts = append(scripts, "bootstrap.legacy.al2.sh") + scripts = append(scripts, script{name: "bootstrap.legacy.al2.sh", contents: bootstrapLegacyAl2Sh}) } if err = addFilesAndScripts(config, files, scripts); err != nil { @@ -74,9 +81,9 @@ func makeAmazonLinux2Config(spec *api.ClusterConfig, ng *api.NodeGroup) ([]confi } files := []configFile{{ - dir: kubeletDropInUnitDir, - name: "10-eksctl.al2.conf", - isAsset: true, + dir: kubeletDropInUnitDir, + name: "10-eksctl.al2.conf", + contents: assets.EksctlAl2Conf, }, { dir: configDir, name: "metadata.env", diff --git a/pkg/nodebootstrap/bindata/assets/bootstrap.legacy.al2.sh b/pkg/nodebootstrap/legacy/scripts/bootstrap.legacy.al2.sh similarity index 100% rename from pkg/nodebootstrap/bindata/assets/bootstrap.legacy.al2.sh rename to pkg/nodebootstrap/legacy/scripts/bootstrap.legacy.al2.sh diff --git a/pkg/nodebootstrap/bindata/assets/bootstrap.legacy.ubuntu.sh b/pkg/nodebootstrap/legacy/scripts/bootstrap.legacy.ubuntu.sh similarity index 100% rename from pkg/nodebootstrap/bindata/assets/bootstrap.legacy.ubuntu.sh rename to pkg/nodebootstrap/legacy/scripts/bootstrap.legacy.ubuntu.sh diff --git a/pkg/nodebootstrap/legacy/ubuntu.go b/pkg/nodebootstrap/legacy/ubuntu.go index c2a3da0223..8eef15d043 100644 --- a/pkg/nodebootstrap/legacy/ubuntu.go +++ b/pkg/nodebootstrap/legacy/ubuntu.go @@ -9,8 +9,14 @@ import ( api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" "github.com/weaveworks/eksctl/pkg/cloudconfig" "github.com/weaveworks/eksctl/pkg/utils/kubeconfig" + + // Import go:embed + _ "embed" ) +//go:embed scripts/bootstrap.legacy.ubuntu.sh +var bootstrapLegacyUbuntuShBytes []byte + const ubuntu2004ResolveConfPath = "/run/systemd/resolve/resolv.conf" type UbuntuBootstrapper struct { @@ -33,7 +39,7 @@ func (b UbuntuBootstrapper) UserData() (string, error) { return "", err } - scripts := []string{} + var scripts []script for _, command := range b.ng.PreBootstrapCommands { config.AddShellCommand(command) @@ -42,7 +48,7 @@ func (b UbuntuBootstrapper) UserData() (string, error) { if b.ng.OverrideBootstrapCommand != nil { config.AddShellCommand(*b.ng.OverrideBootstrapCommand) } else { - scripts = append(scripts, "bootstrap.legacy.ubuntu.sh") + scripts = append(scripts, script{name: "bootstrap.legacy.ubuntu.sh", contents: string(bootstrapLegacyUbuntuShBytes)}) } if err = addFilesAndScripts(config, files, scripts); err != nil { diff --git a/pkg/nodebootstrap/legacy/userdata.go b/pkg/nodebootstrap/legacy/userdata.go index 96a8807e75..f77979f20b 100644 --- a/pkg/nodebootstrap/legacy/userdata.go +++ b/pkg/nodebootstrap/legacy/userdata.go @@ -2,7 +2,6 @@ package legacy import ( "fmt" - "path/filepath" "strings" "github.com/pkg/errors" @@ -14,12 +13,11 @@ import ( api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" "github.com/weaveworks/eksctl/pkg/cloudconfig" - "github.com/weaveworks/eksctl/pkg/nodebootstrap/bindata" + "github.com/weaveworks/eksctl/pkg/nodebootstrap/assets" "github.com/weaveworks/eksctl/pkg/utils/kubeconfig" ) const ( - dataDir = "bindata/assets" configDir = "/etc/eksctl/" kubeletDropInUnitDir = "/etc/systemd/system/kubelet.service.d/" ) @@ -28,42 +26,27 @@ type configFile struct { dir string name string contents string - isAsset bool } -func getAsset(name string) (string, error) { - data, err := bindata.Asset(filepath.Join(dataDir, name)) - if err != nil { - return "", errors.Wrapf(err, "decoding embedded file %q", name) - } - return string(data), nil +type script struct { + name string + contents string } -func addFilesAndScripts(config *cloudconfig.CloudConfig, files []configFile, scripts []string) error { +func addFilesAndScripts(config *cloudconfig.CloudConfig, files []configFile, scripts []script) error { for _, file := range files { f := cloudconfig.File{ - Path: file.dir + file.name, + Path: file.dir + file.name, + Content: file.contents, } - if file.isAsset { - data, err := getAsset(file.name) - if err != nil { - return err - } - f.Content = data - } else { - f.Content = file.contents - } + f.Content = file.contents config.AddFile(f) } - for _, scriptName := range scripts { - data, err := getAsset(scriptName) - if err != nil { - return err - } - config.RunScript(scriptName, data) + for _, s := range scripts { + config.RunScript(s.name, s.contents) } return nil } @@ -90,11 +73,7 @@ func getKubeReserved(info InstanceTypeInfo) api.InlineDocument { } func makeKubeletConfigYAML(spec *api.ClusterConfig, ng *api.NodeGroup) ([]byte, error) { - data, err := bindata.Asset(filepath.Join(dataDir, "kubelet.yaml")) - if err != nil { - return nil, err - } - + data := []byte(assets.KubeletYaml) // use a map here, as using struct will require us to add defaulting etc, // and we only need to add a few top-level fields obj := api.InlineDocument{} @@ -145,7 +124,7 @@ func makeKubeletConfigYAML(spec *api.ClusterConfig, ng *api.NodeGroup) ([]byte, } } - data, err = yaml.Marshal(obj) + data, err := yaml.Marshal(obj) if err != nil { return nil, err } diff --git a/pkg/nodebootstrap/managed_al2.go b/pkg/nodebootstrap/managed_al2.go index 0876f32969..92437add7f 100644 --- a/pkg/nodebootstrap/managed_al2.go +++ b/pkg/nodebootstrap/managed_al2.go @@ -11,6 +11,7 @@ import ( "github.com/pkg/errors" api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" + "github.com/weaveworks/eksctl/pkg/nodebootstrap/assets" ) // ManagedAL2 is a bootstrapper for managed Amazon Linux 2 nodegroups @@ -52,11 +53,7 @@ func (m *ManagedAL2) UserData() (string, error) { } if api.IsEnabled(ng.EFAEnabled) { - data, err := getAsset("efa.managed.boothook") - if err != nil { - return "", err - } - cloudboot = append(cloudboot, data) + cloudboot = append(cloudboot, assets.EfaManagedBoothook) } if len(scripts) == 0 && len(cloudboot) == 0 { diff --git a/pkg/nodebootstrap/ubuntu.go b/pkg/nodebootstrap/ubuntu.go index f8523e7e10..a84ce95e92 100644 --- a/pkg/nodebootstrap/ubuntu.go +++ b/pkg/nodebootstrap/ubuntu.go @@ -4,6 +4,7 @@ import ( "github.com/kris-nova/logger" "github.com/pkg/errors" api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" + "github.com/weaveworks/eksctl/pkg/nodebootstrap/assets" ) const ( @@ -23,7 +24,7 @@ func NewUbuntuBootstrapper(clusterConfig *api.ClusterConfig, np api.NodePool) *U } func (b *Ubuntu) UserData() (string, error) { - body, err := linuxConfig(b.clusterConfig, ubuntuBootScript, b.np) + body, err := linuxConfig(b.clusterConfig, ubuntuBootScript, assets.BootstrapUbuntuSh, b.np) if err != nil { return "", errors.Wrap(err, "encoding user data") } diff --git a/pkg/nodebootstrap/userdata.go b/pkg/nodebootstrap/userdata.go index 007a60755e..42c46426d2 100644 --- a/pkg/nodebootstrap/userdata.go +++ b/pkg/nodebootstrap/userdata.go @@ -5,27 +5,23 @@ import ( "encoding/json" "fmt" "net" - "path/filepath" "strconv" "strings" "github.com/kris-nova/logger" "github.com/pkg/errors" + "github.com/weaveworks/eksctl/pkg/nodebootstrap/assets" "github.com/weaveworks/eksctl/pkg/nodebootstrap/utils" kubeletapi "k8s.io/kubelet/config/v1beta1" api "github.com/weaveworks/eksctl/pkg/apis/eksctl.io/v1alpha5" "github.com/weaveworks/eksctl/pkg/cloudconfig" - "github.com/weaveworks/eksctl/pkg/nodebootstrap/bindata" "github.com/weaveworks/eksctl/pkg/nodebootstrap/legacy" ) -//go:generate ${GOBIN}/go-bindata -pkg bindata -prefix assets -nometadata -o bindata/assets.go bindata/assets - const ( - dataDir = "bindata/assets" configDir = "/etc/eksctl/" envFile = "kubelet.env" extraKubeConfFile = "kubelet-extra.json" @@ -104,7 +100,7 @@ func GetClusterDNS(clusterConfig *api.ClusterConfig) (string, error) { return ip.String(), nil } -func linuxConfig(clusterConfig *api.ClusterConfig, bootScript string, np api.NodePool, scripts ...string) (string, error) { +func linuxConfig(clusterConfig *api.ClusterConfig, bootScriptName, bootScriptContent string, np api.NodePool, scripts ...script) (string, error) { config := cloudconfig.New() ng := np.BaseNodeGroup() @@ -114,13 +110,13 @@ func linuxConfig(clusterConfig *api.ClusterConfig, bootScript string, np api.Nod var files []cloudconfig.File if len(scripts) == 0 { - scripts = []string{} + scripts = []script{} } if ng.OverrideBootstrapCommand != nil { config.AddShellCommand(*ng.OverrideBootstrapCommand) } else { - scripts = append(scripts, commonLinuxBootScript, bootScript) + scripts = append(scripts, script{name: commonLinuxBootScript, contents: assets.BootstrapHelperSh}, script{name: bootScriptName, contents: bootScriptContent}) var kubeletExtraConf *api.InlineDocument if unmanaged, ok := np.(*api.NodeGroup); ok { kubeletExtraConf = unmanaged.KubeletExtraConfig @@ -207,27 +203,19 @@ func formatLabels(labels map[string]string) string { return makeKeyValues(labels, ",") } -func addFilesAndScripts(config *cloudconfig.CloudConfig, files []cloudconfig.File, scripts []string) error { +type script struct { + name string + contents string +} + +func addFilesAndScripts(config *cloudconfig.CloudConfig, files []cloudconfig.File, scripts []script) error { for _, file := range files { config.AddFile(file) } - for _, scriptName := range scripts { - data, err := getAsset(scriptName) - if err != nil { - return err - } - config.RunScript(scriptName, data) + for _, s := range scripts { + config.RunScript(s.name, s.contents) } return nil } - -func getAsset(name string) (string, error) { - data, err := bindata.Asset(filepath.Join(dataDir, name)) - if err != nil { - return "", errors.Wrapf(err, "decoding embedded file %q", name) - } - - return string(data), nil -} diff --git a/tools.go b/tools.go index b67d1d5df6..cecb7fea8c 100644 --- a/tools.go +++ b/tools.go @@ -1,4 +1,4 @@ -// +build tools +//go:build tools package eksctl @@ -9,7 +9,6 @@ import ( _ "github.com/github-release/github-release" _ "github.com/golangci/golangci-lint/cmd/golangci-lint" _ "github.com/goreleaser/goreleaser" - _ "github.com/kevinburke/go-bindata/go-bindata" _ "github.com/maxbrunsfeld/counterfeiter/v6" _ "github.com/vektra/mockery/cmd/mockery" _ "golang.org/x/tools/cmd/stringer"