From 3e1baa865cdef7639b5beebbb220ba4068360c4e Mon Sep 17 00:00:00 2001 From: lauk Date: Thu, 23 May 2024 17:40:54 +0800 Subject: [PATCH] added the ability to deploy the kylinServer os --- cmd/command/opts/opts.go | 2 +- cmd/command/setup_opts.go | 4 +- cmd/deploy.go | 2 +- data/assets_vfsdata.go | 104 +++++------ .../files/etc/nkdfiles/node-pivot.sh.template | 165 +++++++++++++++--- data/data/bootconfig/kickstart.cfg.template | 2 +- pkg/configmanager/asset/clusterasset.go | 12 +- .../asset/infraasset/libvirtasset.go | 6 +- pkg/configmanager/runtime/contained.go | 32 ++++ pkg/configmanager/runtime/runtime.go | 7 +- pkg/constants/constants.go | 7 +- .../bootconfig/cloudinit/template.go | 14 ++ .../bootconfig/kickstart/template.go | 10 ++ pkg/osmanager/bootconfig/tools.go | 8 +- pkg/osmanager/osmanager.go | 12 +- pkg/terraform/generate.go | 2 +- 16 files changed, 283 insertions(+), 106 deletions(-) create mode 100644 pkg/configmanager/runtime/contained.go diff --git a/cmd/command/opts/opts.go b/cmd/command/opts/opts.go index 76f7db9..ff965aa 100644 --- a/cmd/command/opts/opts.go +++ b/cmd/command/opts/opts.go @@ -91,7 +91,7 @@ type OpenStack struct { type Libvirt struct { URI string - OSImage string + OSPath string CIDR string Gateway string } diff --git a/cmd/command/setup_opts.go b/cmd/command/setup_opts.go index f6c7edf..678a0ff 100644 --- a/cmd/command/setup_opts.go +++ b/cmd/command/setup_opts.go @@ -28,7 +28,7 @@ func SetupDeployCmdOpts(deployCmd *cobra.Command) { flags.StringVarP(&opts.Opts.ClusterID, "cluster-id", "", "", "Unique identifier for the cluster") flags.StringVar(&opts.Opts.Arch, "arch", "", "Architecture for Kubernetes cluster deployment (e.g., amd64 or arm64)") flags.StringVarP(&opts.Opts.Platform, "platform", "", "", "Infrastructure platform for deploying the cluster (supports 'libvirt' 'openstack' 'pxe' 'ipxe')") - flags.StringVarP(&opts.Opts.OSImage.Type, "os-type", "", "", "Operating system type for Kubernetes cluster deployment (e.g., nestos or openeuler)") + flags.StringVarP(&opts.Opts.OSImage.Type, "os-type", "", "", "Operating system type for Kubernetes cluster deployment (e.g., nestos or generalos)") flags.StringVarP(&opts.Opts.UserName, "username", "", "", "User name for node login") flags.StringVarP(&opts.Opts.Password, "password", "", "", "Password for node login") flags.StringVarP(&opts.Opts.SSHKey, "sshkey", "", "", "SSH key file path used for node authentication (default: ~/.ssh/id_rsa.pub)") @@ -42,7 +42,7 @@ func SetupDeployCmdOpts(deployCmd *cobra.Command) { flags.UintVar(&opts.Opts.Worker.RAM, "worker-ram", 0, "RAM allocation for worker nodes (units: MB)") flags.UintVar(&opts.Opts.Worker.Disk, "worker-disk", 0, "Disk size allocation for worker nodes (units: GB)") flags.StringArrayVarP(&opts.Opts.Worker.IP, "worker-ips", "", []string{}, "IP addresses of worker nodes (e.g., --worker-ips [worker-ip-01] --worker-ips [worker-ip-02] ...)") - flags.StringVarP(&opts.Opts.Runtime, "runtime", "", "", "Container runtime type (docker, isulad or crio)") + flags.StringVarP(&opts.Opts.Runtime, "runtime", "", "", "Container runtime type (docker, isulad, containerd or crio)") flags.StringVarP(&opts.Opts.ImageRegistry, "image-registry", "", "", "Registry address for Kubernetes component container images") flags.StringVarP(&opts.Opts.PauseImage, "pause-image", "", "", "Image for the pause container (e.g., pause:TAG)") flags.StringVarP(&opts.Opts.ReleaseImageUrl, "release-image-url", "", "", "URL of the NestOS container image containing Kubernetes component") diff --git a/cmd/deploy.go b/cmd/deploy.go index 3c73a3c..8010213 100755 --- a/cmd/deploy.go +++ b/cmd/deploy.go @@ -178,7 +178,7 @@ func createCluster(conf *asset.ClusterAsset, httpService *httpserver.HTTPService return err } } - if osMgr.IsOpenEuler() && len(conf.Master) > 0 { + if osMgr.IsGeneralOS() && len(conf.Master) > 0 { certs, _ := cert.CertsToBytes(conf.Master[0].Certs) if err := httpService.AddFileToCache(constants.CertsFiles, certs); err != nil { return err diff --git a/data/assets_vfsdata.go b/data/assets_vfsdata.go index 46e05c7..3debe46 100644 --- a/data/assets_vfsdata.go +++ b/data/assets_vfsdata.go @@ -20,272 +20,272 @@ var Assets = func() http.FileSystem { fs := vfsgen۰FS{ "/": &vfsgen۰DirInfo{ name: "/", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig": &vfsgen۰DirInfo{ name: "bootconfig", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files": &vfsgen۰DirInfo{ name: "files", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc": &vfsgen۰DirInfo{ name: "etc", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc/docker": &vfsgen۰DirInfo{ name: "docker", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc/docker/daemon.json": &vfsgen۰FileInfo{ name: "daemon.json", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), content: []byte("\x7b\x0a\x20\x20\x22\x65\x78\x65\x63\x2d\x6f\x70\x74\x73\x22\x3a\x20\x5b\x22\x6e\x61\x74\x69\x76\x65\x2e\x63\x67\x72\x6f\x75\x70\x64\x72\x69\x76\x65\x72\x3d\x73\x79\x73\x74\x65\x6d\x64\x22\x5d\x0a\x7d"), }, "/bootconfig/files/etc/hosts.template": &vfsgen۰CompressedFileInfo{ name: "hosts.template", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 167, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x32\x34\x32\xd7\x33\xd0\x33\xd0\x33\x54\x50\x50\xc8\xc9\x4f\x4e\xcc\xc9\xc8\x2f\x2e\x41\xb0\xf4\xc0\xac\x94\xfc\xdc\xc4\xcc\x3c\x84\xa8\x09\x12\x13\x59\x85\x09\x97\x95\x15\xc8\x20\x08\x20\xda\x38\x33\x24\x26\xb2\x0a\x33\xae\xea\x6a\x3d\x8f\xe2\xcc\x82\xda\x5a\x40\x00\x00\x00\xff\xff\x0b\x57\x23\x96\xa7\x00\x00\x00"), }, "/bootconfig/files/etc/isulad": &vfsgen۰DirInfo{ name: "isulad", - modTime: time.Date(2024, 5, 22, 2, 43, 44, 612550465, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc/isulad/daemon.json.template": &vfsgen۰CompressedFileInfo{ name: "daemon.json.template", - modTime: time.Date(2024, 5, 22, 2, 43, 44, 612550465, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 1124, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x7c\x54\x3d\xcf\xd3\x30\x10\xde\xfb\x2b\xa2\xcc\x38\x29\x45\x62\xa8\xc4\x82\xc4\x80\x18\x40\x5d\x11\x7a\xe5\xda\x97\xf4\x88\xe3\xb3\xce\x76\x78\x43\x95\xff\x8e\xec\x26\x69\x1b\x10\x5b\x75\xcf\x47\x9f\xfb\x88\xaf\xbb\xa2\x28\x8a\xb2\x65\x8a\xae\x3c\x16\x25\xfa\x68\x64\xf9\xe6\x56\xd5\xd0\xc8\x68\x82\xe0\x68\x03\xf6\x90\x70\xa3\x78\x41\x5b\x96\xee\x92\x6a\xf5\x20\xb9\x36\x78\xae\xb3\x58\x2f\xb8\x0f\x32\xc0\x8a\x73\xb4\x1b\x1c\x6c\x8b\x76\x6b\x6a\xa8\x15\x06\x06\x30\xa9\xfe\xe9\x74\xfa\x7a\x5a\x10\x87\xba\x41\xf3\x2f\xc3\xca\xa1\x7e\xd4\x93\x0b\xbe\x3c\x16\xb7\xd6\xd6\x6a\x12\x8b\x9e\x74\x76\xd8\xbf\xdf\xef\x67\xc9\x4a\x70\x32\xfc\xa7\x9d\x4c\xeb\xe5\xab\x58\x42\xbc\xdd\x02\x1e\x7f\x67\xe0\xdd\xfe\xcb\xc7\x32\x43\xd3\x43\x28\xcd\x38\x00\x27\xdc\x07\x4d\x31\x2c\x81\x15\xd9\x20\xd1\x02\x0b\x43\xed\x73\xea\xbb\xe4\xa7\x27\x7b\xfb\xe3\x27\xdf\x0b\x51\x27\xbc\x03\x95\x63\x43\x50\xf5\xbc\xb1\x39\x7a\x9d\x08\x7e\x29\x56\xc9\xe5\x61\x39\x1c\x44\xda\x6a\xca\x72\x2c\xca\x43\x7f\x87\x88\x65\x0b\x0f\x89\x69\x00\x36\x72\x3c\x6c\x19\xf3\xa0\xbf\xdf\x23\x2f\xcc\x2a\xfd\x60\xd4\xf0\xd2\x01\x5b\x30\x2f\xea\x02\xaa\xfb\x10\x38\xce\x2d\xfc\x98\xad\x18\x5a\xf4\x81\x47\xd1\x23\x33\xf1\xc6\x4e\x93\xea\x80\x2b\xa4\x67\x11\x5a\x0f\x2a\x32\x88\x59\x8d\xb0\xd1\x5d\xaf\xd5\xe7\x5e\xb6\x70\x9a\xdd\xa7\xe9\xd9\xc0\x91\x16\x5e\x5a\x7d\xa6\x57\x81\x89\x98\xba\xfc\x5b\x54\x5f\xaf\xd5\x37\x19\x3d\xe4\xfa\x34\x2d\xfd\x5b\x19\x70\x80\x2a\xf6\xd2\x77\x79\xa3\x39\xcd\x8a\x42\xf8\x45\xdc\x09\x67\x62\x8b\x36\xe1\xca\xe2\xba\x6e\x8b\xe2\x8c\x56\x68\xcc\x93\xad\xc9\x85\x5a\x59\xac\xcf\x68\x1f\x29\x8a\x6c\xb3\x72\xd2\x62\x13\xc7\x42\xa8\xd6\x43\xcf\xb1\x85\x91\x23\xb0\xc8\xc3\x2d\x8f\x45\x23\x8d\x87\x19\x8f\x1e\x84\x06\xc5\xa3\x0b\xa0\x45\x07\x63\x79\x2c\xd2\xf8\xb7\x23\xf4\x1d\x3a\x31\x00\x63\x33\x0a\xb0\x0d\xb1\x82\x8d\x93\x62\x5c\x5e\x80\xcd\x67\xd5\xc9\x20\xf3\xa3\x41\xd5\x7a\xc6\xba\x4a\xd5\x6a\x38\xcc\xa7\xba\x9b\x76\x7f\x02\x00\x00\xff\xff\x68\x18\xbf\x42\x64\x04\x00\x00"), }, "/bootconfig/files/etc/nkdfiles": &vfsgen۰DirInfo{ name: "nkdfiles", - modTime: time.Date(2024, 5, 22, 2, 43, 44, 612550465, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc/nkdfiles/init-config.yaml.template": &vfsgen۰CompressedFileInfo{ name: "init-config.yaml.template", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 849, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xac\x51\x41\x8f\x9b\x3c\x10\xbd\xf3\x2b\x2c\xee\xc0\xea\xd3\x77\xa8\x7c\x8b\xd2\x3d\x44\xdb\xae\xa2\xa4\xed\xdd\x81\x89\x77\x84\x99\x41\xe3\x21\xcd\x0a\xf1\xdf\x2b\x03\xc9\x6e\x8e\x95\x7a\x02\x3f\xbf\x37\xf3\xde\xb3\xeb\xf1\x17\x48\x44\x26\x6b\xda\xe1\x04\xae\xe9\xca\xf6\x4b\x2c\x91\xab\x71\x2c\x5f\x16\x64\x73\x27\x4d\x53\x76\x62\xd6\xa8\xe2\xfa\x1f\xdc\x02\x45\x9b\x15\xc6\x0b\x0f\x7d\xb4\x99\x31\x85\x89\xef\x51\xa1\xb3\x77\x56\x0f\x12\xed\x3a\xd9\x36\x70\x76\x43\xd0\x82\xb8\x81\x42\x93\x3e\x33\x66\xfe\x5a\x33\x8e\xe5\x3c\x71\x9a\x12\xa6\xc1\x9a\xff\xfe\x7f\x7b\xea\x9e\x62\x66\xcc\x10\x9d\x87\xdb\x02\xf4\x84\xe4\xe7\x7f\x37\xe8\x1b\x90\x62\xed\x14\x99\xb2\x16\xa9\xb1\x66\x47\xa8\x5b\xa6\x33\xfa\x41\x16\x3c\xad\x3b\x80\xc7\x64\x28\x01\x69\x50\x2d\x78\xe4\xba\x05\x9d\x37\x6f\x6f\xa7\x79\x3b\xb9\x0e\x66\xf8\x95\x1b\x78\x75\x1d\xcc\x68\x0a\x11\x40\x9f\xaf\x2a\x6e\x23\x7e\xb6\x63\xcc\x85\xc3\xd0\x41\xd1\x87\xc1\x23\x15\x0d\x8a\x35\x79\xc5\xbd\x56\x01\x4f\x70\x85\xba\x4a\x32\x21\x50\x88\xd5\x3a\x61\x25\xc7\x6a\xd1\x56\x33\x2d\xcf\x6a\x10\xc5\x73\xca\x02\x2f\xf0\xbe\xd8\x7a\x80\xa6\x29\x2b\x8a\x22\xfb\xfb\x27\x5b\x7a\xd9\x86\x21\x2a\xc8\x63\x35\x35\x93\x0a\x87\x00\xf2\xdd\x91\xf3\x20\x29\x15\x3c\x46\x3c\x07\xb8\x16\xff\x2e\xe7\x07\xf1\x1e\x63\xf5\xfd\xe1\x18\x3b\xe7\xe1\x00\x3d\x47\x54\x96\xa5\x8c\xdd\x82\xcd\xcf\x98\xba\x58\xad\xef\x83\x23\x78\xa6\xa6\x67\x24\xb5\x26\x1f\xc7\x72\xb3\xdf\x1d\x41\x2e\x20\x3f\x0f\xdf\xa6\x29\xcf\x08\xf4\x37\x4b\x8b\xe4\x53\xa0\x08\x72\xc1\x1a\x8e\xc3\x89\x60\x15\x1c\x3f\x43\x49\x61\x4c\xcf\xcd\x67\xc6\xfe\x76\x5c\x6e\x1b\x8a\x5f\xb9\x73\x48\xd6\xe4\xf5\xd2\x6b\x19\xb8\x76\x21\xff\x13\x00\x00\xff\xff\x05\xcc\x21\x0f\x51\x03\x00\x00"), }, "/bootconfig/files/etc/nkdfiles/node-pivot.sh.template": &vfsgen۰CompressedFileInfo{ name: "node-pivot.sh.template", - modTime: time.Date(2024, 5, 22, 2, 43, 44, 612550465, time.UTC), - uncompressedSize: 6299, + modTime: time.Date(2024, 5, 27, 3, 21, 46, 203228779, time.UTC), + uncompressedSize: 9631, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xb4\x59\xdd\x4f\x1b\x3b\x16\x7f\x9f\xbf\xe2\x74\x88\x1a\xb8\xaa\x93\xdb\xd5\x6a\x1f\xb8\xd0\x5d\x89\x82\x96\xdd\x55\xa9\x48\xfb\x04\x34\x32\x33\x67\x12\x37\x8e\x3d\xd8\x9e\x40\x96\xf0\xbf\xaf\x6c\xcf\x87\x67\x32\x09\xdc\x4a\xcb\x43\xcb\xd8\xe7\xcb\xe7\xfc\x7c\x3e\xcc\xc1\xbb\xf1\x3d\x13\xe3\x7b\xaa\xe7\x51\x84\x4f\x98\xc0\xa7\x4f\x30\x5e\x51\x35\xe6\x72\x36\x16\x8b\x74\x2a\x64\x8a\xd3\x9c\xad\xa4\x19\x71\x39\x83\xbf\x7c\x7a\xff\x31\x8a\x0e\xe0\x1b\x2e\x73\x4e\x0d\xc2\x8a\x2a\x46\xef\x39\xea\x68\x2e\xe5\x62\x9a\x31\x8e\x7a\x9a\x53\x33\x3f\x8d\x9f\x9f\x47\xff\x94\x72\x71\x61\x97\xbe\x52\x33\x7f\x79\x89\x23\x55\x08\xc3\x96\xe8\x36\xaf\xfd\xef\x76\x99\x2d\xe9\x0c\xa7\x0a\x67\x4c\x1b\xb5\x76\xbb\x97\x76\xe9\xba\x5c\xb1\x34\x39\x2d\x34\x4e\x1d\xa5\x23\xf8\x6a\xbf\x1d\x95\x13\x8c\x1c\x69\xb5\x3f\x2d\x14\xf7\x2a\xfc\xaa\xa3\xfa\x7e\xcd\x2d\x61\x82\xca\xe8\x9a\xe0\xcc\x7e\x7d\x57\x6e\x27\x3a\x80\x8b\x42\x24\x86\x49\x01\x46\xc2\x92\x0a\x3a\x43\xd0\xa8\x56\x2c\x41\x1d\xf9\xef\x69\xf9\x7d\x78\x04\xcf\x11\x00\x00\x97\x09\xe5\x15\xd5\x54\x50\x7b\xb8\xc1\xc7\xd8\xed\xb1\x0c\xf4\x5a\x1b\x5c\x26\x86\x03\xd3\x84\x26\x86\xad\x10\x08\x79\x28\x18\x1a\x88\x07\x21\x5b\xfc\x07\x98\x39\x0a\xc7\x68\x7f\x30\x99\xcb\x0e\x09\x30\x0d\x94\x2b\xa4\xe9\x1a\x54\x21\x04\x13\x33\xaf\x08\xb9\xc6\xd7\x18\x85\x34\x15\xd3\x07\xd0\x86\x2a\xc3\xc4\x6c\x34\x1a\xc5\x35\x63\xcb\x5c\x47\xd1\x35\x11\xde\xbf\x0f\x48\x50\xd8\xc8\xbf\x72\x8c\x5d\x16\x55\x16\x80\x2e\x92\x04\xb5\x0e\xec\x68\x9d\xa6\xe1\xff\xee\xd5\x19\x59\xda\x26\x55\x65\x41\x4b\x72\x20\xc8\xf1\x3e\x31\x03\x1f\xeb\xa5\x8c\x45\xe5\x7f\x2f\xdd\x80\x27\x73\x4c\x16\x40\x45\x5a\xca\x2f\x85\x46\x6e\x7d\x4a\x45\x3a\x75\xeb\xbf\x8e\x00\xce\xb4\x21\x85\x60\x86\xb8\x6b\x02\x1b\x98\x29\xcc\x81\x3c\x74\x7c\x33\x2a\x3f\xba\xae\x6c\x23\xb0\xeb\xf7\xb7\x01\xa1\x62\x4e\x25\x7a\x48\xe0\x13\xd3\xe6\x03\xe8\x05\xcb\xf3\x10\x10\x7d\x1e\x4a\x99\x76\xfe\xce\x98\xc2\x47\xca\xb9\x3d\x1e\x33\x43\x5d\xc6\x21\x8d\x4a\x82\x69\x45\x50\xfb\xe8\x00\xce\x9c\x77\x59\x16\x30\x37\x7c\x6f\xb8\x2c\x15\x5b\xda\x7b\x4d\x2e\x02\xa1\x35\xc8\xbd\x35\x5d\x94\xef\x82\xbb\xcc\x1b\x1d\x6d\x9c\x77\x8f\x9d\xee\x84\x78\x6d\x46\xc9\x92\x56\xe8\xce\x0a\xce\xd7\xaf\x43\xfc\x82\x32\xcb\xd4\xe3\xea\x37\xa1\xba\x27\xfa\xa1\x63\x82\x0c\xb0\x27\xc8\xb6\x0c\x14\x06\xc1\xe6\x73\x70\x40\x8d\xca\xa5\xa9\x5d\x72\x2b\x1d\xec\xa7\x4c\x61\x62\xa4\xcd\xdc\x01\xf0\x6f\xe0\x1d\x90\x14\xe2\x41\xbd\x1d\xc3\x5d\xc7\x75\x0a\x4d\xa1\x04\x54\xc6\x84\xf7\x69\x8e\x9c\xfb\x7a\x72\x7a\x18\xca\x18\xff\x76\xd4\x68\x18\x3c\x1f\x04\x84\x37\xff\xb8\x7b\x01\x82\x0f\xf0\xfb\x96\x22\xef\x8d\x2f\xd2\x9f\x08\x32\x59\x88\x14\x98\xf0\xa7\xac\x85\x1f\x43\xa0\xa8\x63\x64\xcb\xc6\x4c\x2a\x27\xc9\x8a\x88\x07\xcf\x1d\x1b\xe2\x3f\x20\x95\x21\xce\x6e\x80\x64\x10\x0f\x2c\xc1\xb6\x0f\x1a\xf3\xce\x9d\x9f\x5d\x52\x4c\x14\xcb\xcd\x31\x78\x96\x16\xe9\xa8\x12\xd4\x8d\x7e\x2a\x05\xf6\x64\x35\x29\x32\x36\x2b\x14\xc2\xd9\xf5\x25\xb9\x82\xb2\x02\x47\xf5\xfa\x34\x51\x4c\x4e\xcb\xe5\x4e\x60\x3d\x91\x3b\xd8\x69\x3c\x46\x93\x8c\x2d\xb1\xfb\x67\x64\xf7\xe2\xa8\x7b\xbb\xcd\xbc\x52\xe4\x79\xbd\x97\x5c\x92\xd1\x2d\x60\x58\x7f\x04\xe2\xe3\x1d\x11\xdb\x96\x65\x51\xec\xc2\x77\x0c\x2d\x01\x51\xcf\xdd\xa8\xc2\xc5\xb2\x26\xd5\xde\xde\x58\xf3\x6f\x47\xae\x53\xb8\xbd\x8b\x3b\x76\x74\xac\x38\x80\x4b\x7f\x28\xce\x04\xc2\x23\x33\x73\x18\x06\x9d\xc8\xd0\x25\x52\x31\xac\xf3\x28\x4d\x53\x60\xa6\x44\x14\x5f\x87\x20\x78\xd7\xd8\xf0\x23\x10\xf1\x8a\x01\xf6\x47\x63\x0a\x84\xc1\x70\xfc\xa3\x63\xfc\x98\x42\x20\x09\x4e\x21\x1e\xc6\x83\x76\x33\x35\x1e\x84\xba\x86\xf1\xb0\xa3\x6e\x77\x4a\x7a\xf5\xe8\x3e\xaa\x1f\x40\x61\xce\x69\x82\xc0\x8c\x86\x15\xe5\x05\xf6\x1a\xaf\x37\x3f\xda\xb6\x8e\x7e\xdb\xfc\x59\xe3\x37\x3b\xad\xdf\x99\x01\x09\x42\xec\x9c\xe6\x7d\x76\x77\x2b\xda\x4a\x6f\xf7\xea\xbc\x8d\x63\xdb\x12\xf7\x28\x0d\xa0\xd5\x54\x0a\x85\xbe\x75\xb0\xfa\x7a\xe1\x3c\x09\xca\x41\x45\x8d\xa9\xbf\x31\x3b\x2b\x78\x53\x15\x2a\xf9\x01\xfd\x36\xe2\xb7\x52\x40\x8e\x2a\x93\x6a\x09\x57\x93\x6f\x0a\x11\x14\xde\x53\x8d\x51\xb9\x3a\xf5\x9f\x9d\x8b\xef\xfa\xe3\x56\x2e\x27\xff\x85\x78\x50\x28\xbe\xeb\xa2\x6e\x35\xe0\xae\xbe\x2f\x73\xb3\x6e\x9a\x0b\x50\xf9\x92\x48\x6d\x1a\x2b\x46\x3d\x87\x66\xd9\x36\x1d\x10\x82\x4f\x39\x2a\xb6\x44\x61\x28\x87\xd8\xef\x92\x42\xac\x50\xb1\x8c\x61\x4a\x9c\xe2\xe3\x54\x26\x0b\x54\xc7\xe3\xb1\xb7\x95\x90\xfb\x75\x4e\xb5\x26\xa9\x62\x2b\x54\x3b\x33\xef\xb5\xd7\x22\x73\x54\xd4\xb9\x2d\x91\xcb\x9c\xa3\xe9\x56\x70\xb8\xc6\x7b\x29\x5d\x8a\xb6\x37\xc3\x47\xbe\xd5\x5e\x38\xc8\x07\x80\xb0\xe4\xaf\x95\xfd\x2d\xed\x99\x8b\xf8\x08\x26\x4e\x10\x3c\x32\xce\x5d\xde\xbb\xc7\x52\x22\xa6\xbf\xdc\xe6\x66\x68\x92\xb9\x6f\x73\xe9\x0a\xc1\xce\x43\x2c\x63\x09\x35\xa8\x23\xb7\xe7\x5b\x5d\xba\xc2\x69\xb8\xd7\xad\x0c\x6e\x8c\x4a\x99\x2a\xeb\xc2\xa2\xb8\x47\x25\xd0\xa0\x1e\xe7\x0b\x66\x97\xd2\xb2\x38\x2c\x17\x29\x53\x40\x72\x7b\x89\x2a\xa6\x38\x90\xa4\x50\xe7\x52\x68\x3c\x1d\x1c\x26\x16\x36\x44\xd7\x94\x36\x84\x47\x1d\x08\x56\xe4\xbb\x70\x78\xae\x94\x54\xc7\xd0\xdc\x19\x7f\xde\x7f\x4d\xae\xbe\x40\x4a\x0d\x1d\xed\x2d\x14\xde\x24\x3b\xbf\xda\x9a\x63\x50\xf8\xd8\x3d\xce\x6d\xe5\xb9\xbc\x98\x9c\x82\x9d\xbe\x80\x28\x97\x14\x5b\x65\xbe\xda\x08\x99\xe1\xe4\xe4\x04\xe2\x81\xa5\x6d\xd4\x96\x7b\xa7\x83\xc3\xb2\x41\x2f\x17\x62\xd8\x80\xc5\xc1\xdf\xfe\x0a\x24\x3d\xea\x76\xf1\x35\x91\xcd\x46\x56\x47\x5c\x17\x7d\x38\x81\x93\x4a\x56\xe3\x9e\x0d\xfc\x7c\xb0\xf6\x0c\x47\x37\x77\xb0\x81\xf8\xf6\x70\x64\xa7\xf0\x23\xb8\x3d\x1c\x9d\x79\x61\x47\xf1\xf0\xc8\x02\x84\x09\x6d\x28\xe7\xd3\x26\x88\xd3\x9c\x26\x0b\x3a\xf3\x61\xaf\xbb\x66\x5d\xa4\x12\xd6\xc5\x12\x4a\x06\x20\x6b\x68\x78\x48\xc2\x99\x3d\x73\xb0\x62\x7f\xe5\xb8\xb5\x44\xd3\xa5\xf5\x82\x30\x8a\x26\x0b\x9b\x2c\x89\x91\x92\x6b\xd0\x32\xa1\xc6\xf9\x87\x32\xe1\x18\x1e\xa5\x5a\x30\x31\x23\x39\x2f\x66\x4c\x68\x60\xb9\x71\xaf\x0d\xf0\xf3\xc1\x59\xf4\xfc\xcc\x32\x18\x5d\xea\xcf\xee\xda\x03\x79\x79\xd9\x69\xa8\xcf\x0c\x25\x17\x8a\xb4\x26\x6e\x09\xba\xd4\x05\xa7\xe9\x5e\x41\x6c\x62\x49\x3a\x82\x5a\x42\xce\x14\x93\x7b\x45\xd8\xfa\xd0\x11\xf0\x12\x95\x83\x66\x49\xe6\x12\x81\x9d\x38\x4d\xd1\xdc\x3d\x9f\x1a\x81\x3c\xd0\x7a\x78\x3c\x87\xe1\x56\x08\x36\xdb\x21\xd8\x6c\x87\x60\x53\x87\x60\x53\x87\x60\xe3\x42\xb0\xd9\x13\x82\x4d\x15\x82\xcd\xcf\x87\x61\xef\x0d\xfc\x77\xad\x09\x2a\x14\x55\x67\xef\x1f\x88\x7a\x4a\x5e\x79\x8b\xf7\x88\x6a\x25\xca\x37\x97\xc2\x6a\xac\xd2\x8f\x34\xaf\xa7\x55\xfb\xd1\x37\xa9\xda\x0c\x5f\x68\x54\x30\xa7\x1a\x74\x91\x65\x2c\x71\x00\xcf\x15\x5b\x31\x8e\x33\x6c\x3a\xda\x1b\x18\x9c\x7f\xbf\xfc\x0c\x44\xa0\x1d\x3e\xfa\x53\xd3\xb7\x39\xd3\x90\x55\xd6\x2c\x0b\xed\x13\x7a\x21\x80\x6a\x50\x52\x9a\x18\xf6\xe5\x26\x2f\xe4\x73\x35\xd4\xba\x33\xd4\xa5\xc7\x7e\xc8\x2c\x03\x42\xb7\x5a\x72\xbb\x65\x8b\x71\x35\x93\x86\x46\xff\xbd\x1a\x97\xfa\x2d\x9e\x58\xd6\x7d\xb3\xec\xde\x6e\x25\x74\xf6\x9f\x0f\xd1\xe4\xfc\x3f\x4c\x14\x4f\x4d\x94\x90\xdb\xef\xf0\x2e\xfc\xbf\xdd\xee\x1d\xf9\xb9\x63\x90\x6f\x6a\x0d\x8a\x4c\xaa\x04\xe1\xf7\x20\x38\x25\xc9\x4e\x97\xb9\xc3\x9e\xd9\x24\x60\xb1\x95\xed\x79\x5a\xd9\x7a\x4a\x89\xa2\x2a\xbb\x5c\xe5\x28\xb0\xe0\x41\xba\xdb\x93\xbf\x03\xe3\x1c\x20\x2c\x70\x5a\x37\xc8\x67\x98\x1a\x47\x3b\x73\x50\x3b\xc1\x49\x61\x94\xe4\x5f\x39\x15\x58\x5b\xb1\xa7\x79\xe8\x4b\x96\x5b\xef\x88\x65\xa6\xaa\x5e\xbf\xa2\x6e\x27\x55\xbd\xca\x19\xb2\xb0\xa7\xe4\x24\xa7\x8a\xd6\xd4\x81\xf4\x03\x38\x7f\xc3\x1b\x86\x9d\xdb\x3b\x6f\xd6\xfe\x11\x78\xe2\xf4\x08\xb4\x81\xa3\x6a\xdd\xbc\x00\xef\x78\x08\xb4\x82\xca\xf1\xd9\x0b\x38\xdb\x31\x72\x6f\x95\x87\xfe\x19\xbc\x7d\x94\xbd\x68\xd9\x4a\x63\xaf\x72\xec\xb8\x55\x96\xef\x6b\xdf\x98\xe0\x5e\x3a\x04\x6a\x23\x75\x6d\xff\x17\xd4\xe6\x6a\xe2\x0c\x6c\x0f\x11\xae\xff\xe8\x8c\x01\x71\x78\x9c\xd6\xa8\xe0\x3b\x76\xe2\xff\xb8\x50\xf9\xb2\xea\xbb\xe3\xff\x05\x00\x00\xff\xff\x9d\x58\x4d\xdc\x9b\x18\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xbc\x5a\x5f\x73\xdb\xb8\x11\x7f\xe7\xa7\xd8\xd0\x9a\xd8\x4a\x43\x29\xe9\x74\xfa\xe0\xb3\x72\x9d\x71\xec\xd6\xed\xcd\x25\x63\x27\x4f\x91\xa3\x81\xc9\xa5\x84\x13\x05\x30\x00\xa8\xd8\x95\xf5\xdd\x3b\x00\x08\x12\xfc\xa3\x3f\xc9\xb4\xcd\xc3\x9d\x09\xec\x2e\x16\xbb\x3f\xec\x2e\x16\x3a\x79\x31\x7e\xa0\x6c\xfc\x40\xe4\x22\x08\xf0\x11\x63\x78\xf7\x0e\xc6\x6b\x22\xc6\x19\x9f\x8f\xd9\x32\x99\x31\x9e\xe0\x2c\xa7\x6b\xae\x46\x19\x9f\xc3\x9f\xdf\xbd\x7c\x1b\x04\x27\xf0\x09\x57\x79\x46\x14\xc2\x9a\x08\x4a\x1e\x32\x94\xc1\x82\xf3\xe5\x2c\xa5\x19\xca\x59\x4e\xd4\x62\x12\x6e\x36\xa3\x7f\x70\xbe\xbc\xd6\x43\x1f\x89\x5a\x6c\xb7\x61\x20\x0a\xa6\xe8\x0a\xcd\xe4\xad\xfd\x5b\x0f\xd3\x15\x99\xe3\x4c\xe0\x9c\x4a\x25\x9e\xcc\xec\x8d\x1e\xba\x2d\x47\x34\x4d\x4e\x0a\x89\x33\x43\x69\x08\x3e\xea\x6f\x43\x65\x04\x63\x86\xc4\xcd\xcf\x0a\x91\xd9\x25\xec\xa8\xa1\xfa\x7c\x9b\x69\xc2\x18\x85\x92\x15\xc1\xa5\xfe\xfa\x2c\x32\xbb\x40\xbc\xd4\xcc\x19\x95\x6a\x72\xb6\xd9\x08\xc2\xe6\x08\xa3\x8f\x76\xf8\x37\x2a\xd5\x76\xab\x79\xb6\xdb\x10\x36\x1b\x64\xc9\x76\x3b\xd4\xb6\xb8\x2e\x58\xac\x28\x67\xa0\x38\xac\x08\x23\x73\x04\x89\x62\x4d\x63\x94\x81\xfd\x9e\x95\xdf\x67\x43\xd8\x04\x00\x00\x19\x8f\x49\xe6\xa8\x66\x8c\x68\x8b\x0c\xde\x86\x66\x8e\xa6\x20\x9f\xa4\xc2\x55\xac\x32\xa0\x32\x22\xb1\xa2\x6b\x84\x28\xfa\x56\x50\x54\x10\x0e\x7c\xb6\xf0\x17\x50\x0b\x64\x86\x51\xff\xc3\x78\xc1\x5b\x24\x40\x25\x90\x4c\x20\x49\x9e\x40\x14\x8c\x51\x36\xb7\x0b\x61\x26\xf1\x10\x23\xe3\xca\x31\xbd\x06\xa9\x88\x50\x94\xcd\x47\xa3\x51\x58\x31\x36\xd4\x35\x14\x6d\x15\xe1\xe5\x4b\x8f\x04\x99\x86\xcb\x81\x6d\xec\xd2\xc8\x69\x00\xb2\x88\x63\x94\xd2\xd3\xa3\xb1\x9b\x9a\xff\xb3\x5d\x4e\xf1\x52\x37\x2e\x9c\x06\x0d\xc9\x9e\x20\xc3\xfb\x48\x15\xbc\xad\x86\x52\x1a\x94\xff\xdb\xb6\x1d\x1e\x2f\x30\x5e\x02\x61\x49\x29\xbf\x14\x1a\x98\xf1\x19\x61\xc9\xcc\x8c\xff\x3c\x02\x34\x1a\xa3\x82\x51\x15\x99\xb3\x05\xcf\x30\x17\x98\x43\xf4\xad\x65\x9b\x51\xf9\xd1\x36\x65\x13\x81\x6d\xbb\x1f\x07\x04\xc7\x9c\x70\xb4\x90\xc0\x47\x2a\xd5\x6b\x90\x4b\x9a\xe7\x3e\x20\xfa\x2c\x94\x50\x69\xec\x9d\x52\x81\xdf\x49\x96\xe9\xed\x51\x75\x2a\x4b\x3f\x24\x41\x49\x30\x73\x04\x95\x8d\x4e\xe0\xd2\x58\x97\xa6\x1e\x73\xcd\x77\xc4\x61\x71\x6c\x49\xef\x31\xb9\xf6\x84\x56\x20\xb7\xda\xb4\x51\xbe\x0b\xee\x3c\xaf\xd7\x68\xe2\xbc\xbd\xed\x64\x27\xc4\x2b\x35\x4a\x96\xc4\xa1\x3b\x2d\xb2\xec\xe9\x30\xc4\xaf\x09\xd5\x4c\x3d\xa6\x3e\x0a\xd5\x3d\xde\xf7\x0d\xe3\x45\x80\x3d\x4e\xd6\xb9\xa3\x50\x08\x3a\x09\x80\x01\x6a\x50\x0e\xcd\xf4\x90\x19\x69\x61\x3f\xa1\x02\x63\xc5\x75\xb8\xf7\x80\xff\x05\x5e\x40\x94\x40\x38\xa8\xa6\x43\xb8\x6f\x99\x4e\xa0\x2a\x04\x03\xa7\x8c\x7f\x9e\x16\x98\x65\x36\x09\x4d\xce\x7c\x19\xe3\x57\xc3\x7a\x85\xc1\xe6\xc4\x23\xfc\xf2\xb7\xfb\x2d\x44\xf8\x0d\xde\x74\x16\xb2\xd6\xf8\x9d\xdb\x1d\x41\xca\x0b\x96\x00\x65\x76\x97\x95\xf0\x73\xf0\x16\x6a\x29\xd9\xd0\x31\xe5\xc2\x48\xd2\x22\xc2\xc1\xa6\xa5\x43\xf8\x0b\x24\xdc\xc7\xd9\x17\x88\x52\x08\x07\x9a\xa0\x6b\x83\x5a\xbd\x2b\x63\x67\x13\x14\x63\x41\x73\x75\x0e\x96\xa5\x41\x3a\x72\x82\xda\xde\x4f\x38\xc3\x9e\xa8\xc6\x59\x4a\xe7\x85\x40\xb8\xbc\xbd\x89\x3e\x40\x99\xb6\x83\x6a\x7c\x16\x0b\xca\x67\xe5\x70\xcb\xb1\x96\xc8\x6c\x6c\x12\x8e\x51\xc5\x63\x4d\x6c\xfe\x33\xd2\x73\x61\xd0\x3e\xdd\x6a\xe1\x16\xb2\xbc\xd6\x4a\x26\xc8\xc8\x06\x30\xb4\x3d\x3c\xf1\xe1\x0e\x8f\x75\x65\x69\x14\x1b\xf7\x9d\x43\x43\x40\xd0\x73\x36\x9c\xbb\x68\x5a\x87\xda\xe9\x17\xad\xfe\x74\x64\xca\x8b\xe9\x7d\xd8\xd2\xa3\xa5\xc5\x09\xdc\xd8\x4d\x65\x94\x21\x7c\xa7\x6a\x01\xa7\x5e\xf9\x72\x6a\x02\x29\x3b\xad\xe2\x28\x49\x12\xa0\xaa\x44\x54\xf6\xe4\x83\xe0\x45\xad\xc3\x57\x4f\xc4\x01\x05\xf4\x3f\x89\x09\x44\x14\x4e\xc7\x5f\x5b\xca\x8f\x09\x78\x92\x60\x02\xe1\x69\x38\x68\x56\x60\xe3\x81\xbf\xd6\x69\x78\xda\x5a\x6e\x77\x48\x3a\xb8\x75\xeb\xd5\xd7\x20\x30\xcf\x48\x8c\x40\x95\x84\x35\xc9\x0a\xec\x55\x5e\x3e\x7f\x6d\xea\x3a\x7a\xf5\xfc\xa3\xca\x3f\xef\xd4\x7e\x67\x04\x8c\x10\x42\x63\x34\x6b\xb3\xfb\x29\x6b\x2e\x3a\xdd\xbb\xe6\x34\x0c\x75\x1d\xdd\xb3\xa8\x07\xad\x3a\x53\x08\xb4\xa5\x83\x5e\xaf\x17\xce\x77\x5e\x3a\x70\xd4\x98\xd8\x13\xb3\x33\x83\xd7\x59\xc1\xc9\xf7\xe8\xbb\x88\xff\x99\x10\xc0\x99\x22\x94\xa1\x48\x3a\x81\xa0\x9e\x72\xa7\x30\xc1\x94\x14\x99\x82\x77\x60\x23\x42\x45\x30\xb6\x04\x23\xc5\x57\x99\xe1\x95\x84\x25\x0f\xfc\xd1\x55\xfa\x7b\x9d\x1b\x54\xb9\x59\x5b\xd4\x62\x26\x94\x27\x5f\xa7\x67\x53\xf9\xaa\x21\x68\x2a\x5f\x4d\xa6\xf2\xd5\x74\x38\x7a\x35\x1d\x9c\x4c\xdf\x4e\xc3\x41\x73\x3e\x3c\x09\xf7\xa9\xd6\xeb\x98\x86\x04\x48\x29\x66\x26\x3d\xec\x11\x03\x45\x9e\x10\xd5\x9f\xe2\xf7\x3a\xd1\xf2\xc1\x8f\xaf\x38\x3a\x06\x79\x15\xe7\x8f\xe0\xaf\xe6\xfa\x01\x10\xb6\x99\x8e\x41\xa2\x40\xbd\xf5\x58\x50\xad\xb3\xc3\x1f\x31\xd3\xfa\x68\x05\x96\x60\x66\x09\x66\x96\xe0\x98\x9c\x14\xab\x6c\xf4\x44\x56\x99\x07\xa3\x13\xb8\x2c\x57\xeb\x2e\x63\x80\x4d\x14\x5c\x5c\x5c\x7d\xb8\x86\xce\xf9\x2e\xcf\x40\x84\x2c\xc9\x39\x65\xea\x1c\xc2\x82\xd1\xc7\xf3\xf1\x78\x2c\x0a\xd6\xf2\x4e\xf9\xe7\x48\xf2\x78\x59\x5e\x7f\x7f\x86\x51\x2f\xc8\x0b\x75\x0e\x6f\x82\x04\x1f\x8a\xf9\x39\xa4\x44\x7b\xe1\xea\xc3\x75\x27\xc9\x76\x77\xa4\xcb\x3b\x6b\xbb\x26\x1e\x83\x66\x01\x72\x44\xc2\xdd\xe9\x9b\x5e\xf9\x40\x54\x23\x0b\x1f\x83\xff\x43\x20\xd8\x21\xb3\x0f\x4f\x39\x8a\x94\x8b\x15\x7c\xb8\xfb\x24\x10\x41\xe0\x03\x91\x18\x94\xa3\x33\xfb\xd9\x82\x8f\x69\x17\x34\xaa\xd4\xe8\xdf\x10\x0e\x0a\x91\xed\xb2\x48\xa7\x1f\x61\x6e\x2e\xab\x5c\x3d\xd5\xd7\x26\x10\xf9\x2a\xe2\x52\xd5\x5a\xf4\x59\x82\xa6\x5d\x3a\x88\x22\x7c\xcc\x51\xd0\x15\x32\x45\x32\x08\xed\x6c\x54\xb0\x35\x0a\x9a\x52\x4c\x22\xb3\xf0\x79\xc2\xe3\x25\x8a\xf3\xf1\xd8\xea\x1a\x45\x0f\x4f\x39\x91\x32\x4a\x04\x5d\xa3\xd8\x59\x53\xde\xda\x55\x78\x8e\xa5\x89\x63\xbe\xca\x33\xec\x04\x2e\xb8\xc5\x07\xce\x4d\xf1\xa9\x73\xbe\x8d\x2c\x8d\x8b\x93\x89\xe8\x5e\xc0\xd1\xe4\x87\x2e\x34\x9d\xd5\x53\x03\x83\x11\xdc\x19\x41\xf0\x9d\x66\x99\xa9\xe8\x1e\xb0\x94\x88\xc9\x4f\x5f\xe0\x53\x54\xf1\xc2\x5e\xe0\xc9\x1a\x21\x46\xa1\x68\x4a\x63\xa2\x50\x06\x66\xce\x5e\xe2\xc9\x1a\x67\xfe\x5c\x3b\xbe\x98\xae\x52\x42\x45\x19\x5d\x96\xc5\x03\x0a\x86\x0a\xe5\x38\x5f\x52\x3d\x94\x94\x65\xef\x6a\x99\x50\x01\x51\xae\x0f\x96\x63\x0a\x3d\x49\x02\x65\xce\x99\xc4\xc9\xe0\x2c\xd6\xb0\x89\x64\x45\xa9\x5d\x38\x6c\x41\xd0\x91\xef\xc2\xe1\x95\x10\x5c\x9c\x43\x7d\x90\xec\x7e\xff\x79\xf7\xe1\x77\x48\x88\x22\xa3\xbd\x25\xb0\x55\x29\x27\x6a\x61\x02\x37\x32\xeb\xbb\xef\x0b\x7d\xe2\x6e\xae\xef\x26\x20\x90\x24\x10\x09\x53\xee\x35\x2e\x30\x6e\xc2\x67\x86\x8b\x8b\x0b\x08\x07\x9a\xb6\x5e\xb6\x9c\x9b\x0c\xce\xca\xd6\x43\x39\x10\xc2\x33\x68\x1c\xfc\xf5\x2f\x10\x25\xc3\x76\x7f\xa2\x22\xd2\x71\x58\xaf\x11\x56\xd7\x19\xb8\x80\x0b\x27\xab\x36\xcf\x33\xfc\xf1\x4d\xeb\x73\x3a\xfa\x72\x0f\xcf\x10\x4e\xcf\x46\x1f\x89\x5a\x0c\x61\x7a\x36\xba\xb4\xc2\x86\xe1\xe9\xb0\xa7\x7f\x81\xa9\x2e\x65\x35\xbe\x29\x93\x8a\x64\x19\xea\x5d\x99\xa6\xa0\x34\x1a\x26\xa0\x29\x17\x08\xc8\xd6\x54\x70\xa6\x0f\x65\x60\xd9\x66\x15\xcb\xcc\xb1\xb4\x90\xe3\x86\x27\x67\xbe\x45\x98\x12\x24\x5e\x46\x8a\xf3\x4c\xd6\xe3\x82\xb6\x46\x24\x8f\x89\x6a\x58\xd2\xa4\x07\x86\xea\x3b\x17\x4b\xca\xe6\x51\x9e\x15\x73\xca\x6a\x0e\x9a\x2b\xdb\xae\x75\x03\x7f\x7c\x33\x7f\x5a\x03\x6f\x36\x34\x85\xd1\x8d\x7c\x6f\xc2\x06\x44\xdb\xad\x19\x76\x3a\xfe\x69\x72\x66\x03\x4a\x84\x6c\x4e\x19\x3a\x26\x64\x49\x45\xeb\x44\xdc\xc8\x22\x23\x49\x9f\x08\x7a\xa7\x67\xf6\xf1\x5e\x0a\xca\xfb\x38\xb5\x01\x78\x1f\x63\xe9\xed\x8d\xa3\x35\xf7\xe9\xae\x2b\x4b\x67\x40\x82\x39\xb2\x44\x03\xd2\x31\x04\xe5\xd4\xac\x9a\x3a\xe4\xaf\xea\x1c\x9a\x7e\x82\xdf\x3b\xb6\x0d\x05\x86\xf0\x06\x5e\xbe\xf4\xb4\xb2\x93\x6f\xee\xb7\x21\xbc\x98\x40\x18\xc2\x7d\xff\x91\xfd\x2c\x75\x3c\xad\xea\xec\xc4\x2d\x69\x5a\x81\xe7\xf5\xc1\xa9\x91\xd3\x5e\x43\xef\x7e\xb8\x2b\xa7\x5a\xf1\xae\x1e\x3f\x28\x7b\x70\xb6\x13\xc9\xc3\xfa\x54\x56\x9e\xab\x0b\x7f\xe7\x9b\xb6\x0f\x2b\x0a\x9f\xdb\x77\xa6\xbb\x95\xf5\xfa\xd4\xa0\xbe\x48\x38\x3c\x15\xab\xca\x9f\xd1\x53\x87\x50\x5f\x34\x12\x5c\x8f\x59\x91\x65\xf6\xd5\xa2\x83\x86\x39\x2a\x73\x6a\x6d\x0b\xd7\x71\xbf\x06\xa4\x6a\x81\x02\x52\xc1\x57\x66\xde\x37\x2d\x70\x61\xc6\x9c\xf9\xf4\x58\x30\x47\x35\xb3\xfd\xde\x1d\x98\x69\x4e\xfe\x2f\x90\xd3\x5c\x61\x1f\x22\x6c\x55\x78\x5b\xde\xbe\xbd\x8b\x9a\xb9\xab\x7b\x15\x26\xe5\xa6\x61\x65\x24\x53\x36\xaf\x73\x29\x17\x40\xcb\x16\xd6\x8b\xe6\xba\xdd\x36\x56\xbd\xd5\x70\xb0\x69\x11\x53\xbd\x9f\xc9\x04\x42\xef\x4e\xd0\xdd\x59\xff\x0e\xbf\xd0\xfb\x49\xd8\x50\xb6\x99\xff\x4b\x0c\x55\x1d\xae\xce\x59\x68\x1b\xec\xbf\x02\xf3\xa6\xd0\x06\xd8\x47\x94\x1f\x89\xf7\x1e\x93\x6a\xec\xda\xe1\x52\x3b\x53\x16\xcd\xa4\x22\xaa\x38\x02\x6b\xdd\xbd\x76\x11\x5b\x6e\xd2\xbb\x2f\xe8\x83\x55\xa5\x39\x22\xea\xec\x97\x54\xcd\x4c\x17\x3c\x2c\x18\x0e\x61\xc1\x74\xb3\x44\xbe\xb2\x6f\x17\x25\x5d\x08\x2f\xbd\x93\xba\xbb\xc9\x69\xcb\x98\xf2\x2d\x0e\x06\xd5\xca\xb6\x41\x5d\xa9\x76\x54\x19\x68\x10\xe1\xd9\xfc\x5f\x55\xb1\xd6\x93\x19\x6a\xd9\xed\x3b\x7b\xe5\x14\x5d\x20\xba\xfc\xa1\x0b\xbf\xd9\x03\x65\x44\xd0\x4e\x18\x70\xc3\x5e\xaa\x0f\x35\x3d\x49\x56\x61\x73\x24\x43\xd5\x1a\x89\x55\x79\x4d\x1d\x56\xd6\x37\xe2\x9e\x4a\xe3\x3b\xd9\x3d\x47\xd0\xd8\x3d\xe6\xab\x95\x2e\x72\xa3\x35\x84\x83\x33\x5d\xb5\x98\x97\x9d\x70\x60\xa5\x84\x43\xed\x88\xc3\x7e\x18\xb8\x45\x25\xac\xa8\x94\xe6\xc5\xa4\xdc\xba\xce\x2a\x54\x41\x61\xd2\xcb\x53\xb1\x6a\x5f\x02\x7a\x82\xf6\xb8\x90\xc2\x3c\x40\x57\x6a\x74\xc3\x76\x3b\x92\xc0\xe0\xd7\x32\x44\xee\x8a\x14\xed\xab\xa3\x5b\xb0\x5c\x63\x04\x57\x8f\x54\xd5\xcf\x19\x7b\xf0\xd2\x7b\x47\xf1\x8c\xd1\x67\xc7\xdd\x78\xd9\x11\x9f\xf6\x36\xe2\xdd\x8b\x8e\xfc\x4e\xf2\xea\xa1\x4c\x7f\xf4\x3d\x92\xe9\xc4\x54\x48\x14\xb0\x20\x12\x64\x91\xa6\x34\xa6\x06\xca\x82\xae\x69\x86\xad\xd4\x73\xf5\xf9\xe6\xbd\xb3\x64\x7f\x21\xf2\x69\x41\x25\xa4\x4e\x9b\x55\x21\xed\x8d\xab\x60\x40\x24\x08\xce\x55\x08\xfb\x2e\x0f\x56\xc8\x7b\xf7\x9e\x66\xf6\x50\xdd\x0d\xf5\x07\x4f\x53\x88\x48\xa7\x51\xa1\xa7\x34\xc0\xdc\x73\x98\xaf\xf4\xaf\xee\xa5\xa6\x5f\xe3\x3b\xcd\xba\xef\x19\x6d\x6f\x8f\xc1\x37\xf6\xe8\xe8\xf6\x94\xe3\xba\xbb\xfa\x8d\xb2\xe2\xb1\xf6\x12\x66\xfa\xbb\x72\xd4\xff\xc1\xec\xd6\x90\xef\x5b\x0a\xd9\x7e\xba\x42\x96\x72\x11\x23\xbc\xf1\x9c\x53\x92\xec\x34\x99\xd9\xec\xd5\x11\x6f\x7b\x3a\x04\xb5\x7e\x00\xb2\x0d\x35\xf3\xa5\x3e\x79\x1a\x98\xe9\x9e\x27\xe1\xce\x13\x70\x10\x98\x4c\xcb\x85\x4e\xb6\x7f\x47\x86\x82\x64\x1f\xee\x4c\xc6\xdc\x5d\xa8\x07\xe5\xe3\x4f\x59\xb0\x80\x9f\x2b\xc1\xe6\x4a\x03\xbf\x9d\x99\xf4\x50\x38\x0f\xfc\xf4\x2f\x78\xf6\x31\x23\x0c\x8d\x52\x7b\x1a\x05\x41\x9d\xec\x83\xce\xaf\x20\xca\x58\xef\xde\xee\x83\x6e\x6b\x56\xa2\x8a\x96\x3a\x3b\x65\x51\x4e\x04\xa9\x28\x3d\xa9\x27\x70\x67\x48\x19\x6a\xd7\xe9\xe8\x5c\xfd\xfc\x64\xc7\xaf\x10\xb4\xb7\xca\x76\xa5\xf6\x52\xe7\xda\x75\x02\x97\x3f\xf4\x00\xe8\x6b\xd3\x2d\x91\xb6\xdb\xbd\x8f\x06\xbd\xed\xdb\xe6\xfe\xf6\x82\xa8\x13\x1a\x0f\x72\xec\x38\xa9\x9a\xef\x63\x5f\x6f\xd0\x64\x5b\x86\x52\xf1\x1a\x02\xbf\xa3\x54\x25\x22\x9b\x9d\x43\xd3\x74\x68\xf5\xfe\x42\x7f\x3b\x8d\xfe\xa0\x6d\xd3\x45\xf6\x07\x56\xce\x3b\xae\xd9\x16\xfe\x27\x00\x00\xff\xff\xa4\x71\x4d\x32\x9f\x25\x00\x00"), }, "/bootconfig/files/etc/sysctl.d": &vfsgen۰DirInfo{ name: "sysctl.d", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc/sysctl.d/kubernetes.conf": &vfsgen۰CompressedFileInfo{ name: "kubernetes.conf", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 96, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xca\x4b\x2d\xd1\x4b\x2a\xca\x4c\x49\x4f\x85\x52\xba\x79\x69\xba\xc9\x89\x39\x39\xba\x99\x05\x25\x89\x49\x39\xa9\xc5\xb6\x86\x5c\xf8\x14\x99\xa1\xa8\xca\x2c\x28\x33\xd1\xcb\x2c\x88\x4f\xcb\x2f\x2a\x4f\x2c\x4a\xb1\x35\x04\x04\x00\x00\xff\xff\xea\x98\xd9\xfa\x60\x00\x00\x00"), }, "/bootconfig/files/etc/systemd": &vfsgen۰DirInfo{ name: "systemd", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc/systemd/system": &vfsgen۰DirInfo{ name: "system", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc/systemd/system/kubelet.service.d": &vfsgen۰DirInfo{ name: "kubelet.service.d", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/files/etc/systemd/system/kubelet.service.d/10-kubeadm.conf.template": &vfsgen۰CompressedFileInfo{ name: "10-kubeadm.conf.template", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 1086, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x7c\x53\xd1\x4e\xdb\x50\x0c\x7d\xef\x57\x58\x01\x89\x87\x91\x54\xbc\x4e\xca\x43\xb7\x15\x34\xb1\x01\x2a\xa0\x4d\x9a\x26\xe4\x24\x4e\x6a\xb8\xbd\x2e\xbe\x4e\xa0\x42\xfc\xfb\x74\x13\x5a\x8a\x56\x78\x8a\xe3\xf8\x9e\x73\xae\xcf\xc9\x1e\x9c\x89\xd1\x67\xb8\x9a\x73\x80\x4a\x65\xc9\x1e\xc4\xbb\x15\x3c\x88\xde\x05\x78\x60\x9b\xc3\x5d\x5b\x10\x56\x0b\x40\x5f\xf5\xb5\x23\x83\xee\x28\x3b\x3a\xfa\x34\xfa\x73\x49\xda\x71\x49\x7f\x47\x53\xdf\xb1\x8a\x5f\x90\xb7\x3c\x39\xbd\xfe\x32\xfd\x31\xbd\xba\x89\xcf\xaf\xe7\x67\xc7\xdf\x4f\x6e\x26\xb3\x93\xcb\x3c\x4d\x0b\x11\x0b\xa6\xb8\x4c\x23\x52\x29\xbe\xe6\x26\x1f\x93\x95\xe3\xf8\xae\x9e\x8c\xc2\xf8\xed\x90\x23\xcb\xe2\x20\xa4\x1f\x9d\xd9\x9e\x4c\x76\xab\x79\xab\x64\x8d\xd3\xa1\x8e\x1d\x17\x6b\x80\xf1\xd0\xcf\x56\xb8\x70\xc9\xe8\xe9\x09\xb8\x06\xba\x87\x6c\xd6\x7a\xe3\x05\x41\x52\x2a\x4b\x02\xcf\xcf\xef\x70\x9c\xcc\xce\xaf\x2f\x7e\xfd\xdc\xb0\x34\x2a\xed\x32\xa4\x4b\xd2\xf4\x5e\x42\x5e\xa3\x0b\x04\x69\x4a\xbe\x16\x2d\x29\xf5\x52\x51\x8a\xce\x49\x89\x86\x85\xa3\xfc\xe0\xa0\x67\x25\x5f\x45\x8e\xbd\xc1\x18\x0e\x80\x50\xb3\x23\xb0\x39\x1a\x24\x6b\x47\xd8\xb3\x25\xbd\x2f\x9b\xd6\xad\xb0\x4f\xa0\x21\x4f\x8a\x46\x01\xd0\x40\x07\xe9\x87\xb0\x94\x65\xeb\xd0\xd8\x37\x60\x73\x82\x6d\x97\x26\xdf\x06\xc9\xd0\xa1\x72\x14\x02\xd5\xca\xe3\x82\x4b\x74\x6e\xb5\x7d\xd5\x63\x76\x94\xa7\xff\x6d\xed\x85\x3e\xad\x1d\x36\x21\x23\xdf\xbd\x23\x3d\xf2\xb6\x81\x14\x4a\xf4\xb1\x80\x5a\x14\xa4\x23\x55\xae\x28\x80\xd4\xfd\xc4\x3a\x65\xa8\x4d\x00\x8c\x08\x0e\x83\x81\x52\x10\xb5\x0c\x2e\x94\x6a\x52\x2c\xdc\xea\xf0\x15\x30\xcc\xa5\x75\x55\xac\x47\x7b\x7d\x37\x3b\x93\x8a\x66\xd4\x70\x8c\x92\xb1\xf8\xec\x74\x80\x9d\x3e\x9a\xe2\x24\x42\x4b\x71\x4b\xa5\x01\xfb\xfe\xc0\xe0\x7c\x3b\x0c\xf7\x9a\x03\xb0\x0f\x46\x58\x65\x9b\x65\x4d\x7f\x5f\xcd\x26\xc3\xaa\x5e\x18\x0b\x82\x20\xad\x96\x54\x41\xad\xb2\x00\x8b\xd7\x8e\xa7\xb3\x1d\x7b\x8b\xa9\x0d\xab\x30\x50\xad\xb7\x37\x9a\x3e\x52\x79\x69\xa8\x96\x6f\x95\xe3\x36\xe8\xb8\x60\xbf\x9e\x82\xfd\x77\x7e\xab\xd7\x0f\x3b\x9b\x6f\xec\xdd\xdf\x71\x8f\x0f\x42\xbe\xbf\x33\xd7\x9b\x7c\xfe\x0b\x00\x00\xff\xff\x21\x0d\x51\xd3\x3e\x04\x00\x00"), }, "/bootconfig/kickstart.cfg.template": &vfsgen۰CompressedFileInfo{ name: "kickstart.cfg.template", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), - uncompressedSize: 907, + modTime: time.Date(2024, 5, 24, 7, 36, 28, 756422545, time.UTC), + uncompressedSize: 918, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\x50\xcb\x6e\xdc\x38\x10\xbc\xf3\x2b\x1a\x1e\x18\x3e\x51\xb3\x87\xc5\x62\x2f\x02\xd6\xf0\x03\x30\x36\x31\x8c\x38\x4e\x72\x4a\xd0\x43\xf6\x48\x84\xa8\x6e\x82\xa4\x34\x96\x85\xf9\xf7\x80\x8a\xfc\x0a\x72\x2b\x56\x57\x35\xbb\x6a\x33\x52\x4c\x4e\xb8\xbe\xbc\xfa\x72\xf5\x41\xb9\x86\x25\x92\x75\xa9\x03\xad\x85\xfd\xa4\x87\x44\x75\xb2\xa8\x70\xc8\x12\x30\x66\xd0\x3a\x4f\x81\x6a\x3f\xf6\x6a\x03\x77\x18\xb3\xcb\x4e\x18\x8c\x27\x8c\x8e\x1b\x70\xbc\x97\xd8\x63\x21\xd5\x42\xae\x2e\x16\x26\xd0\xda\xb1\xcb\x1e\x77\xe4\xd5\x06\x1e\x12\x41\x13\x31\xb4\xce\xa0\x07\xc7\x29\xa3\xf7\xea\x85\x51\x1b\xf8\x9f\xa6\x9d\x60\xb4\xe0\x71\x92\x21\x27\xd5\x3d\x13\x5a\x8f\xa6\xa3\xa9\xc7\x50\x1b\x06\xad\x1f\x57\x45\x7d\x66\xf8\x4c\x6d\xe0\x7e\x4a\x99\x7a\xf0\xc8\xcd\x80\x0d\xa9\x02\xe0\xa9\xfd\x71\x71\x5b\x3d\x7c\xbe\xd6\xff\x2a\xb5\x81\x5b\xca\x07\x89\xdd\xbb\x93\x79\xe5\x40\xeb\x9d\x48\x0e\x51\xb2\xd4\xb6\x35\x01\xb4\xb6\x34\x3a\x43\x35\x71\xf8\x3b\xfd\x55\xb2\x84\xf1\x9f\xba\x14\x03\x5a\xa3\xc9\x6e\xc4\x4c\x6f\x17\xb4\x92\x32\x63\x4f\xb5\x04\x62\x1a\x3c\xc5\xca\x48\xa9\xed\x93\x48\x86\x80\x29\x1d\x24\x5a\x15\xcb\x3f\x87\xb2\x2f\x99\x38\x85\x4c\x16\xe6\xb9\xba\x5b\xc7\xc7\x63\x31\x0c\x0c\xb9\x25\xb8\xa7\x3c\x04\x38\x6f\x88\x33\x08\xc3\xde\xc5\x94\xa1\xdc\xa9\x16\x58\x10\x68\x4d\x8c\x3b\x4f\x6a\x03\x97\x02\x2c\x19\x8c\xf0\xde\x35\x43\xa4\x65\xc7\x37\xf8\xea\xd8\xca\x61\xad\x48\xa5\xce\x85\xc7\xd7\xc6\x12\xc5\x92\x32\xa9\x67\x50\x82\xbb\x54\x36\xda\xfa\xc4\xb4\x51\x78\xb2\x27\xaf\xfa\xec\x7a\x7a\x12\x26\xf5\x0c\xe0\x3c\x39\xdc\xde\xb7\xc8\x4d\x8b\x0e\xb4\x1e\xb2\x51\xea\x34\xa0\xe9\xb0\xa1\xa4\xfe\xfb\xde\x3b\x76\x3d\x7a\x4d\x3c\xba\x28\xdc\x13\x67\xa5\x4e\x89\x6d\x91\x49\x2a\x11\xbc\x34\xf5\x76\xc4\xb8\xf5\xd2\x6c\xbb\xa4\x0b\x5d\x79\x69\x54\xdf\x59\x17\x41\x07\xd8\x52\x36\x5b\xee\xec\xde\x79\x4a\x4a\xcd\xb3\xdb\x43\x75\x93\x2e\xc5\x74\x14\x41\x1f\x8f\xbf\x49\xed\x32\x50\xf3\x4c\x6c\x97\xf1\x8b\xe5\x26\x0d\x1e\xed\x1f\x2c\x6e\x19\xbc\xb7\x44\xe4\x86\xa0\xba\x2e\xbf\x1e\x8f\x6a\x9e\xab\x0b\xe1\x4c\x9c\xd7\x47\x89\x4d\x1f\xc5\x2e\x4f\x62\xfb\xce\xf5\xab\x32\xbb\x1a\xdf\x48\x4a\xf8\x9f\x01\x00\x00\xff\xff\x5e\xf9\xba\x2b\x8b\x03\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x6c\x90\x4f\x6b\xdc\x30\x10\xc5\xef\xfa\x14\x43\x96\x90\x93\x76\x7b\x28\xa5\x17\x43\x43\xfe\x40\x68\x1b\x42\xd3\xb4\x3d\xb5\xcc\x4a\xb3\xb6\xb0\x3c\x23\x24\xd9\x1b\xc7\xec\x77\x2f\x72\x9c\x7f\xa5\xb7\xa7\x37\xf3\x1b\xcd\xbc\xd5\x40\x31\x39\xe1\xea\xfc\xe2\xc7\xc5\x17\xe5\x6a\x96\x48\xd6\xa5\x16\xb4\x16\xf6\xa3\xee\x13\x55\xc9\xa2\xc2\x3e\x4b\xc0\x98\x41\xeb\x3c\x06\xaa\xfc\xd0\xa9\x15\xdc\x60\xcc\x2e\x3b\x61\x30\x9e\x30\x3a\xae\xc1\xf1\x4e\x62\x87\xc5\x54\xb3\xb9\x50\x2c\x4c\xa0\xb5\x63\x97\x3d\x6e\xc9\xab\x15\xdc\x25\x82\x3a\x62\x68\x9c\x41\x0f\x8e\x53\x46\xef\xd5\xb3\xa3\x56\xf0\x99\xc6\xad\x60\xb4\xe0\x71\x94\x3e\x27\xd5\x3e\x19\x5a\x0f\xa6\xa5\xb1\xc3\x50\x19\x06\xad\xef\x97\x8e\xea\xc4\xf0\x89\x5a\xc1\xed\x98\x32\x75\xe0\x91\xeb\x1e\x6b\x52\x45\xc0\x43\xf3\xe7\xec\x7a\x7d\xf7\xfd\x52\x7f\x54\x6a\x05\xd7\x94\xf7\x12\xdb\x37\x2b\xf3\xe2\x81\xd6\x5b\x91\x1c\xa2\x64\xa9\x6c\x63\x02\x68\x6d\x69\x70\x86\x2a\xe2\xf0\x3e\xbd\x2b\xb7\x84\xe1\x43\x55\x82\x01\xad\xd1\x64\x37\x60\xa6\xd7\x03\x1a\x49\x99\xb1\xa3\x4a\x02\x31\xf5\x9e\xe2\xda\x48\x89\xed\x9b\x48\x86\x80\x29\xed\x25\x5a\x15\xcb\x3f\xfb\x32\x2f\x99\x38\x86\x4c\x16\xa6\x69\x7d\xb3\x94\x0f\x87\x02\xf4\x0c\xb9\x21\xb8\xa5\xdc\x07\x38\xad\x89\x33\x08\xc3\xce\xc5\x94\xa1\xec\xa9\x66\x59\x14\x68\x4d\x8c\x5b\x4f\x6a\x05\xe7\x02\x2c\x19\x8c\xf0\xce\xd5\x7d\xa4\x79\xc6\x2f\xf8\xe9\xd8\xca\x7e\x89\x48\xa5\xd6\x85\xfb\x97\xc4\x12\xc5\x72\x65\x52\x4f\xa2\x1c\xee\x52\x99\x68\xab\x23\xd3\x44\xe1\xd1\x1e\xbd\xf4\x67\xd7\xd1\x83\x30\xa9\x27\x01\xa7\xc9\xe1\xe6\xb6\x41\xae\x1b\x74\xa0\x75\x9f\x8d\x52\xc7\x01\x4d\x8b\x35\x25\xf5\xe9\x77\xe7\xd8\x75\xe8\x35\xf1\xe0\xa2\x70\x47\x9c\x95\x3a\x26\xb6\xa5\x4d\x52\x39\xc1\x4b\x5d\x6d\x06\x8c\x1b\x2f\xf5\xa6\x4d\xba\xd8\x6b\x2f\xb5\xea\x5a\xeb\x22\xe8\x00\x1b\xca\x66\xc3\xad\xdd\x39\x4f\x69\xd3\x88\xb4\x8f\x4a\xa9\x69\x72\x3b\x58\x5f\xa5\x73\x31\x2d\x45\xd0\x87\xc3\x3f\x94\x9d\x0b\x6a\x9a\x88\xed\x5c\x7e\x46\xae\x52\xef\xd1\xfe\x07\x71\x73\xe1\x2d\x12\x91\x6b\x82\xf5\x65\xf9\xf6\x70\x50\xd3\xb4\x3e\x13\xce\xc4\x79\x79\x94\x04\xe8\xab\xd8\xf9\x49\x6c\xdf\x50\x8f\xe9\xd9\x05\x7c\xd5\x52\x72\xf8\x1b\x00\x00\xff\xff\x87\x90\xf8\xb5\x96\x03\x00\x00"), }, "/bootconfig/systemd": &vfsgen۰DirInfo{ name: "systemd", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/bootconfig/systemd/init-cluster.service": &vfsgen۰CompressedFileInfo{ name: "init-cluster.service", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 515, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x90\xbd\x6e\xe3\x30\x10\x84\x7b\x3e\xc5\xda\x85\x3b\x4a\x77\xc5\x55\x07\x15\xf7\xe3\xe2\x3a\xc3\xc6\x21\x85\xa0\x62\x4d\xad\xa4\x85\x29\x52\xe1\x2e\x1d\xfb\xed\x03\x29\xb6\x03\xa4\x48\x91\x92\x1c\xcc\xc7\x8f\x53\xff\x0f\xac\x8d\xf9\x4b\xe2\x12\x4f\xca\x31\x54\x1c\x58\xe1\x94\x8f\x94\x02\x29\x09\x38\x9f\x45\x29\x99\x3d\x3d\x67\x4e\x24\x95\x90\xda\xd3\x9c\x7a\x3b\x61\xc2\x42\x28\x9d\xd9\x11\x24\xf2\x84\x42\x96\x47\xec\xc9\x4e\x7c\x8e\x7a\xcf\xcc\xaf\x4e\x29\x7d\xa9\xf9\x27\x86\x96\x67\xb1\x1d\xea\xb0\xbd\xb0\xa8\x54\xab\xf2\x8c\xa9\xf4\xb1\x2f\x67\x59\x7b\x33\x2c\x44\x71\x9c\x8c\xa9\x0f\x6f\xd5\xc6\x6c\x2f\xe4\x0e\x8a\x49\x77\x89\xaa\xf2\xc8\xa1\x3c\xa2\x0c\x60\x1d\xac\x5f\x06\xf6\x04\x35\xac\xc0\x76\xf0\xc0\x85\xd8\x3e\xde\x9f\x61\xd0\xfc\x84\x36\x82\x78\xa2\x09\xbe\x7f\x9b\x0f\x81\xd6\xef\xdc\x0f\xd0\x79\x35\x6c\x47\x58\x26\xb4\xd6\xc5\xd0\x71\x5f\x95\xa4\xae\x0c\xa7\xb6\x63\x4f\x72\x33\x5e\x92\xe2\x8a\xa3\x07\x6b\xf3\xe4\x23\xb6\xd6\x51\x52\x81\xcd\x06\x16\xa8\xc6\xec\x06\xf8\xe4\xa3\x6b\xb3\x27\x59\x24\x62\xb0\x1d\xb2\xcf\x89\xee\x57\x07\x72\xd5\x0f\x31\xa6\xfe\x17\x44\xd1\xfb\xc6\x3c\x61\x50\x6a\x7f\x5f\xab\x31\x7b\x65\x9b\x85\x52\xa1\x98\x7a\xd2\xd7\x00\x00\x00\xff\xff\x5b\x74\x1f\x12\x03\x02\x00\x00"), }, "/bootconfig/systemd/join-master.service.template": &vfsgen۰CompressedFileInfo{ name: "join-master.service.template", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 625, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x50\xb1\x8e\x13\x31\x10\xed\xfd\x15\x73\x29\xae\x73\x02\x05\x15\xda\xe2\x08\x27\x71\x82\x22\x4a\x38\x51\x44\x29\x26\xde\x97\xac\x59\xaf\xbd\x8c\x67\xc3\x45\x51\xfe\x1d\x79\x57\xe1\x24\x24\x9a\xeb\xfc\xde\x9b\xf7\xfc\x66\xb6\xcf\xd1\xeb\xce\x7c\x46\x76\xe2\x7b\xf5\x29\x56\x1d\x67\x85\x50\x4c\x35\xe8\x67\xf2\x91\xb4\x01\xb9\x30\x14\xd6\xac\xf1\x6b\xf0\x82\x5c\x65\xa8\x6d\x21\x11\xc1\xf6\x2c\x3c\xcf\x90\x93\x77\x20\x41\x00\x67\x58\xdf\xf1\x11\xb6\xf7\xa7\xa4\x37\xcd\x3c\x1c\x14\xf2\x26\xe7\x32\xc5\xda\x97\x76\x2b\xd6\xe6\xf1\xc5\x67\xcd\xd5\xdd\xe2\xc4\xb2\x08\xe9\xb8\x28\x2d\xed\x54\x7b\x9e\x95\xbb\xde\x98\xed\x66\x72\xee\xcc\xe3\x0b\xdc\x46\x59\x74\x25\xa8\x16\x7b\x1f\x17\x7b\xce\x0d\x59\x47\xb3\xdf\x8d\x0f\xa0\x2d\xdd\x91\x3d\xd0\xdf\xb4\xb2\xf8\xed\xfb\x12\x46\xbb\x8f\x54\x27\xca\x01\xe8\xe9\xfd\xbb\x02\x22\x66\xaf\xb9\xff\x84\xb6\xc3\x1e\x5c\x77\xd3\xe9\x2e\x97\xf9\xc3\xea\xa9\x74\x81\x3c\xaf\xbf\x5d\xaf\x64\xad\xa6\x16\xa3\xf2\xbd\x3c\x46\xaa\xf6\xd9\xa5\x13\xe4\x3c\x89\xd6\xb1\x75\x10\xb5\x4d\x09\xbd\x5c\xe6\x4b\x5e\x42\xf4\x0b\xe7\x66\x1c\x77\x29\xaa\xa4\x60\xfb\xc0\x11\x05\x43\xd4\x1f\xbc\x63\x85\x6d\x71\x1e\x1d\xaf\xd4\x57\x9c\x27\x97\x78\x9b\x93\x6b\xa1\x55\x19\x10\xbf\x19\xc1\xf5\x4a\x74\x7f\x4f\x9a\x06\xd7\xd0\xff\x4f\x3a\x33\x6b\xe4\x71\xdd\x14\xed\x81\x7d\x18\x04\x37\x6a\x03\x57\x7d\xc8\xc6\x6c\x9f\x62\x56\x0e\x61\x67\x7e\x70\x54\xd4\x9f\xce\x55\x37\x04\xf5\x76\xc8\x90\xb9\xb2\x1c\xa1\x7f\x02\x00\x00\xff\xff\xba\x44\x08\x20\x71\x02\x00\x00"), }, "/bootconfig/systemd/join-worker.service.template": &vfsgen۰CompressedFileInfo{ name: "join-worker.service.template", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 571, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x90\xb1\x6e\xdb\x30\x10\x86\x77\x3e\xc5\xc5\x43\x36\x4a\xed\xd0\xa9\xd0\x90\xba\x01\x1a\xa0\x83\x61\x37\xe8\x60\x78\xa0\xa9\xdf\x16\x2b\x9a\x54\xef\x4e\x4e\x02\xc3\xef\x5e\x50\x82\x5b\xa0\x40\x97\x6e\xbc\xfb\x79\x1f\x3f\xde\xf6\x39\x05\xdd\x99\xcf\x10\xcf\x61\xd0\x90\x53\xf3\x92\xb9\x07\x53\xca\x2d\xe8\x47\x0e\x89\xb4\x03\xf9\x38\x8a\x82\xcd\x1a\x3f\xc7\xc0\x90\x46\xa0\xb6\x07\x27\x44\x3b\x38\x76\x95\x80\xcf\xc1\x83\x18\x11\x4e\x60\xc3\xc9\x1d\x61\x87\x70\xce\x7a\xcb\xcc\xc3\x41\xc1\xff\x35\xb9\xcc\xa9\x0d\xc5\x6e\xe5\xb4\x7b\x7c\x0d\xa2\xd2\xdc\xd5\x67\xc7\x75\xcc\xc7\xba\x58\xda\x59\xbb\x12\x75\xa7\xc1\x98\xed\x66\x9e\xdc\x99\xc7\x57\xf8\x8d\x3a\xd6\x15\xa3\xa9\xf7\x21\xd5\x7b\x27\x1d\x59\x4f\x8b\x97\x2e\x44\xd0\x96\xee\xc8\x1e\xe8\x37\xad\x7c\xfc\xf6\x7c\x81\xd1\xee\x23\xb5\x99\x24\x02\x03\xbd\x7f\x57\x8a\x84\xc5\x1f\xee\x5f\xd0\x7e\xdc\xc3\xb5\xa7\x79\x75\x97\x4b\xf5\xb0\x7a\x2a\x2e\xe0\xe7\xf5\xd7\xeb\x95\xac\xd5\xdc\x63\x4a\xbe\x95\xc3\xd4\x6a\x83\xf8\x7c\x06\xbf\xcd\xa1\xf5\xce\x7a\xb0\xda\xae\x40\x2f\x97\x6a\xe9\x96\x60\xfd\xe2\xa4\x9b\xae\x7b\x0e\x56\xb2\xef\xa1\x4d\x09\x39\x6c\xa6\xe2\x7a\x25\xba\xbf\x27\xcd\xa3\xef\xe8\xdf\xcb\x59\x98\x35\x64\x12\xcf\xc9\x1e\x5c\x88\x23\xe3\xd6\xda\xc0\x37\x1f\xc4\x98\xed\x53\x12\x75\x31\xee\xcc\x77\x97\x14\xed\xa7\xb7\xe6\x34\x46\x0d\x76\x14\x70\xa5\x8e\x8f\xd0\x5f\x01\x00\x00\xff\xff\xc1\x5b\x96\x23\x3b\x02\x00\x00"), }, "/bootconfig/systemd/kubelet.service": &vfsgen۰CompressedFileInfo{ name: "kubelet.service", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 323, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\x8f\xc1\x4e\xeb\x30\x10\x45\xf7\xfe\x8a\xfc\x40\xeb\xbe\x6d\x25\x2f\xfa\x68\x17\x15\x08\x21\x0a\x62\x51\x65\xe1\x38\x43\x32\x8a\x33\x8e\x3c\xd7\x69\xfb\xf7\x88\xa8\xb0\x63\x7d\xce\x8c\xee\x39\xbf\x0b\xa3\x36\x7b\xd2\x90\x79\x02\x27\x71\x43\x69\x28\x12\xb6\xd5\x5b\x4f\xd5\x63\x69\x28\x0b\x81\xb4\x7a\x4e\x2d\x55\xbb\x8e\x04\x66\x9f\x42\x19\x49\xe0\x97\x83\x1e\x98\x74\x6b\xed\xf0\xeb\xae\x39\xd9\x36\x05\xb5\xe6\xc3\x0b\xd4\x09\xe1\x92\xf2\xb0\x4a\x12\x59\x68\x0d\x9f\x3b\x82\xd9\x7d\x82\xf2\x1f\xec\x21\x49\xcb\xdf\xdf\x5f\x3c\xfa\xc3\x95\x15\xea\xec\xec\xb3\x8d\xa9\xb3\x92\x5a\x5a\x4d\x3c\x27\xac\x15\x7e\x9c\x8c\x39\x9f\x28\xcf\x1c\xa8\x36\x87\x2b\x85\x13\x7c\x86\xb3\x45\xb3\x6d\x58\xec\x3d\xc8\xbc\x92\x2e\xc0\xc7\x8b\xbf\xa9\x59\xac\x27\x1e\x19\x47\x01\xe5\xd9\x47\xb7\xf9\x71\x4e\x14\xdc\xbf\x8d\x31\xe7\xa3\x28\x7c\x8c\xf5\x12\x42\xed\xff\x9b\x1b\x4b\x04\xaf\x8a\x52\xbe\x6f\xfd\x0a\x00\x00\xff\xff\x99\x17\x34\x68\x43\x01\x00\x00"), }, "/bootconfig/systemd/release-image-pivot.service": &vfsgen۰CompressedFileInfo{ name: "release-image-pivot.service", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 328, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x74\xcf\xaf\x6e\xc3\x40\x0c\xc7\x71\x7e\x4f\xe1\x15\x94\xa5\x87\x06\x0f\xec\x4f\xc1\x58\xb5\x6a\x1a\x88\x02\xdc\x8b\x93\x58\xb9\xf8\xa2\xb3\x93\x75\x6f\x3f\xa5\xda\xc0\x40\xa9\x2d\xfd\x3e\xfa\xd6\x1f\xc2\xd6\xb8\x57\xd2\x58\x78\x36\xce\x12\x4e\xbc\x66\x03\xc9\x2d\x81\x65\xb0\x81\x40\xc6\x16\x0a\x25\x42\x25\xe0\x09\x7b\x72\x9f\x28\xa6\x41\xc8\xbe\x72\x19\xab\x2c\x89\x85\x0e\x86\xa5\x27\x73\x4f\x9d\x51\xb9\xf3\x7b\xc9\xd2\xf2\xa6\x9c\xd0\x86\xe3\x95\xd5\x34\x3c\xf8\x15\x8b\x4f\xb9\xf7\x9b\x59\xcd\x1b\x7f\x50\xc3\x69\x76\xae\x3e\x53\x59\x39\x52\xe3\x8e\x57\x8a\x67\xc3\x62\xc1\x5f\x58\xfc\x05\x75\x80\x2a\xc2\xce\x93\x45\x2f\x63\xdb\x71\x22\xfd\xb7\x30\xc0\x7e\x0f\x96\x97\x38\xc0\x5d\x61\xe7\xdc\x3b\xe9\x6d\x36\x4b\xd5\x21\xa7\xa5\xd0\xdf\xe9\x4c\x31\x3c\xaa\x73\xf5\x9b\xa8\x61\x4a\xcd\x2d\x9b\xda\xe7\xef\x30\x2d\xc9\xb8\x5a\x94\xca\x6f\xd9\x4f\x00\x00\x00\xff\xff\xff\x91\xbf\xed\x48\x01\x00\x00"), }, "/bootconfig/systemd/set-kernel-para.service": &vfsgen۰CompressedFileInfo{ name: "set-kernel-para.service", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 284, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x7c\x8e\x4d\x4e\xc3\x30\x10\x85\xf7\x73\x0a\x5f\x20\xc9\x09\xbc\x00\xd1\x05\x62\xd7\x82\x58\x44\x11\x72\x9c\x97\x32\xaa\x63\x9b\x99\x49\xd5\xdc\x1e\x41\x24\xc4\xaa\xbb\xf7\x2b\x7d\xfd\x5b\x66\x1b\xe8\x09\x1a\x85\xab\x71\xc9\x5e\x61\xee\x02\xc9\x48\xae\x06\x09\x6e\x2e\xe2\x5e\xd6\xf1\x27\x31\x28\x1d\xf1\xb5\xb2\x40\xbd\x20\x21\x28\x1a\x5e\xc2\x19\x4d\xe5\x6b\xb1\x56\x21\x57\x8e\xa0\x87\xd9\x20\x77\x17\xd4\x9f\x76\x35\xd0\xeb\x56\xe1\x4b\x86\x7e\x16\xa3\x23\x96\xc0\xf9\xf7\x7f\xb8\xb1\xf9\x0d\x4a\x87\x1b\xe2\xc9\x82\x98\x5f\xca\x54\xa5\x8c\x70\xa3\x7c\x64\xd8\xcc\xc9\x20\xff\x7a\xdd\x34\x5a\x72\x4d\x75\x1d\x2c\x76\xbb\x6d\xa7\xee\xf2\xc7\xdf\xc6\x92\x67\xa2\xfe\x39\xab\x85\x94\x06\x7a\x0f\xd9\x30\x3d\x6e\x7e\x59\x93\x71\xb3\x2a\xa4\xb5\x20\x67\xd8\x77\x00\x00\x00\xff\xff\x2c\xec\xe5\x9e\x1c\x01\x00\x00"), }, "/housekeeper": &vfsgen۰DirInfo{ name: "housekeeper", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/housekeeper/1housekeeper.io_updates.yaml": &vfsgen۰CompressedFileInfo{ name: "1housekeeper.io_updates.yaml", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 2294, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xb4\x54\x4d\x93\xe3\x44\x0c\xbd\xe7\x57\xa8\x8a\xc3\x5e\x88\xc3\xc0\x65\xf1\x6d\x6b\x80\xaa\x14\xcb\x32\x35\x99\xd9\xbb\xec\x56\x9c\x26\xed\xee\x46\x52\xa7\x76\xa0\xf8\xef\x54\xb7\x9d\x89\xed\xd9\xf9\xe0\x80\x6f\x96\xd4\x7a\x92\x9e\x9e\x30\xda\xcf\xc4\x62\x83\xaf\x01\xa3\xa5\x2f\x4a\x3e\xff\x49\x75\x7c\x2f\x95\x0d\x9b\xd3\xd5\xea\x68\xbd\xa9\xe1\x3a\x89\x86\xfe\x96\x24\x24\x6e\xe9\x27\xda\x5b\x6f\xd5\x06\xbf\xea\x49\xd1\xa0\x62\xbd\x02\x40\xef\x83\x62\x36\x4b\xfe\x05\x68\x83\x57\x0e\xce\x11\xaf\x3b\xf2\xd5\x31\x35\xd4\x24\xeb\x0c\x71\x49\x7e\x86\x3e\x7d\x57\xfd\x58\x7d\xbf\x02\x68\x99\xca\xf3\x3b\xdb\x93\x28\xf6\xb1\x06\x9f\x9c\x5b\x01\x78\xec\xa9\x86\x14\x0d\x2a\x49\x75\x08\x49\xe8\x48\x14\x4b\xa2\x95\x44\x6a\x33\x60\xc7\x21\xc5\x1a\x16\xde\xe1\xf1\x58\xd1\xd0\xcd\x7d\xc9\x53\x0c\xce\x8a\xfe\x3a\x31\x7e\xb4\xa2\xc5\x11\x5d\x62\x74\x8f\x98\xc5\x26\xd6\x77\xc9\x21\x9f\xad\x2b\x00\x69\x43\xa4\x1a\x3e\x65\x88\x88\x2d\x99\x15\xc0\xd8\x58\x81\x5c\x8f\xa5\x9f\xae\xd0\xc5\x03\x5e\x0d\x79\xda\x03\xf5\x38\x54\x04\x10\x22\xf9\x0f\x37\xdb\xcf\x3f\xec\x66\x66\x00\x43\xd2\xb2\x8d\x5a\x86\x34\x94\x07\x56\x40\x0f\x04\x43\x28\xec\x03\x97\xdf\xb1\x48\xf8\x70\xb3\x7d\x7c\x1d\x39\x44\x62\xb5\xe7\xd6\x87\x6f\x42\xf9\xc4\xba\xc0\x7a\x97\xcb\x19\xa2\xc0\x64\xae\x69\x40\x1d\x1b\x23\x33\x76\x00\x61\x0f\x7a\xb0\x02\x4c\x91\x49\xc8\x0f\xec\xcf\x12\x43\x0e\x42\x0f\xa1\xf9\x83\x5a\xad\x60\x47\x9c\xd3\x80\x1c\x42\x72\x26\xaf\xc8\x89\x58\x81\xa9\x0d\x9d\xb7\x7f\x3d\xe6\x16\xd0\x50\x40\x5d\xee\x4c\x17\x39\xad\x57\x62\x8f\x0e\x4e\xe8\x12\x7d\x0b\xe8\x0d\xf4\xf8\x00\x4c\x19\x05\x92\x9f\xe4\x2b\x21\x52\xc1\x6f\x81\x09\xac\xdf\x87\x1a\x0e\xaa\x51\xea\xcd\xa6\xb3\x7a\x5e\xf5\x36\xf4\x7d\xf2\x56\x1f\x36\x65\x6b\x6d\x93\x34\xb0\x6c\x0c\x9d\xc8\x6d\xc4\x76\x6b\xe4\xf6\x60\x95\x5a\x4d\x4c\x1b\x8c\x76\x5d\x4a\xf7\x65\xdd\xab\xde\x7c\xc3\xa3\x38\xe4\xdd\xac\x56\x7d\xc8\xfb\x21\xca\xd6\x77\x13\x47\x59\xc4\x17\x18\xc8\x3b\x99\xc9\xc6\xf1\xe9\xd0\xc5\x65\xd0\xd9\x94\xa7\x73\xfb\xf3\xee\x0e\xce\xd0\x85\x8c\xe5\xf4\xcb\xdc\x2f\x0f\xe5\x42\x41\x1e\x98\xf5\x7b\xe2\x81\xc4\x3d\x87\xbe\xe4\x24\x6f\x62\xb0\x5e\xcb\x4f\xeb\x2c\xf9\xe5\xf8\x25\x35\xbd\xd5\xcc\xfb\x9f\x89\x44\x33\x57\x15\x5c\x17\xfd\x43\x73\x5e\x47\x53\xc1\xd6\xc3\x35\xf6\xe4\xae\x51\xe8\x7f\x27\x20\x4f\x5a\xd6\x79\xb0\x6f\xa3\x60\x7a\xba\x96\xc1\xc3\xd4\x26\x8e\xf3\x8d\x79\x86\xaf\x41\x9d\xbb\x48\xed\x4c\x30\x86\xc4\x72\x5e\x69\xcd\xda\x0d\xfb\xe9\xe5\x79\x59\xa7\x65\x47\x52\x43\x5f\x15\xeb\xd3\x75\xb9\xbb\xa8\x13\x92\x90\xc9\xe2\x49\xb1\x63\x34\x04\xc7\xf7\x8b\x79\xbc\x30\x93\xb2\x31\xb2\xed\xb1\xa3\xfb\xdb\x8f\x6f\x41\xb5\x39\x16\x12\xbb\x27\xb8\xbf\xef\xfe\x13\x2c\x9d\x6c\xab\x37\xc1\xfc\x12\xb8\xa5\xd7\x90\xb7\x7b\x50\xce\xc2\xdf\xe7\xe8\xe1\x6d\x99\x78\x0c\xe6\x39\xd4\x26\x04\x47\xb8\xbc\x4e\x3d\x7e\xb9\xf7\x78\x42\xeb\xb0\x71\xaf\xe2\x7e\x4a\x7d\x43\x9c\x99\xf4\xc1\x14\x92\x51\x01\x99\xa0\xa1\xac\xc8\xb1\x75\x03\x38\x54\x23\xd8\x13\xa8\xed\xe9\xb9\x9a\xf2\x1d\xeb\x88\x67\xde\x2c\xaa\xbc\x35\xf3\x5a\xd6\xd3\x75\x58\x78\x2e\x8c\x2d\x1c\xb3\x99\x2e\x7c\xf3\xc6\xdf\xa4\x01\x45\x4d\xf2\xba\x0a\x4a\xd8\x4c\x07\xa1\x91\x7c\x73\x5e\x16\xc2\x57\x51\x9f\x18\x87\x44\x75\xa1\x7f\x30\x68\x60\xec\x68\x6a\x49\xcd\xe3\x31\x3e\x57\x3b\xd6\x0e\x7f\xff\xb3\xfa\x37\x00\x00\xff\xff\x66\xcf\xb8\xbd\xf6\x08\x00\x00"), }, "/housekeeper/2namespace.yaml": &vfsgen۰FileInfo{ name: "2namespace.yaml", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), content: []byte("\x61\x70\x69\x56\x65\x72\x73\x69\x6f\x6e\x3a\x20\x76\x31\x0a\x6b\x69\x6e\x64\x3a\x20\x4e\x61\x6d\x65\x73\x70\x61\x63\x65\x0a\x6d\x65\x74\x61\x64\x61\x74\x61\x3a\x0a\x20\x20\x6e\x61\x6d\x65\x3a\x20\x68\x6f\x75\x73\x65\x6b\x65\x65\x70\x65\x72\x2d\x73\x79\x73\x74\x65\x6d"), }, "/housekeeper/3role.yaml": &vfsgen۰CompressedFileInfo{ name: "3role.yaml", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 773, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x92\x41\x6b\xfb\x30\x0c\xc5\xef\xfe\x14\xa2\xf7\xa4\xfc\x6f\x7f\x72\xdd\x61\xf7\x31\x76\x57\xe3\xb7\x56\xd4\xb1\x8d\x64\x77\xd0\x4f\x3f\xea\x66\x30\x92\x6e\x8c\x9c\xfc\x90\xd1\xef\x3d\xd9\xe2\x2c\x6f\x50\x93\x14\x07\xd2\x03\x8f\x3d\xd7\x72\x4a\x2a\x57\x2e\x92\x62\x7f\xfe\x6f\xbd\xa4\xfd\xe5\x9f\x3b\x4b\xf4\x03\x3d\x85\x6a\x05\xfa\x92\x02\xdc\x84\xc2\x9e\x0b\x0f\x8e\x68\x54\xb4\x86\x57\x99\x60\x85\xa7\x3c\x50\xac\x21\x38\xa2\xc8\x13\x06\xaa\xd9\x73\x41\x37\x71\xe4\x23\xb4\xd3\x5b\xbf\xd6\x00\x1b\x5c\x47\x9c\xe5\x59\x53\xcd\x76\x23\x75\x74\x4a\xd5\x70\x06\x32\xb4\x97\xe4\x88\x14\x96\xaa\x8e\x98\xef\xef\x2c\x73\x44\x17\xe8\x61\x2e\xb6\x00\x68\xd2\x23\x60\x96\x47\x94\x76\x06\xb1\xbb\xc8\x5c\xc6\xd3\x37\x4a\x93\x1f\xad\xb8\x35\xc7\xfe\x5d\x22\x07\xb9\x42\x17\x91\x66\x87\xcd\x5c\x2b\x5c\xea\x82\xf9\x35\xd0\x6a\x8e\x95\xcb\x6e\xb7\x26\xc7\xe4\xf1\x03\x70\xd3\x0b\x3d\xf2\xc8\xc9\xff\x66\xf1\x67\xc6\x1e\x17\x19\x6f\x2b\xf5\xf0\x9f\x57\x18\xce\xd9\xd6\x20\xcf\x98\x52\x34\x94\x45\xa4\xc5\x8a\x7c\x06\x00\x00\xff\xff\xe4\x20\x3c\x4b\x05\x03\x00\x00"), }, "/housekeeper/4role_binding.yaml": &vfsgen۰CompressedFileInfo{ name: "4role_binding.yaml", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 286, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x7c\x8d\xbd\x4a\x03\x41\x14\x85\xfb\x79\x8a\x79\x81\x5d\xb1\x93\xe9\xd4\xc2\x3e\x82\xfd\xdd\x99\x93\xe4\xba\xbb\x73\x87\xfb\x13\xd0\xa7\x97\x40\xb4\x11\xd2\x9d\x03\xdf\xc7\x47\x83\x3f\xa0\xc6\xd2\x4b\xd6\x85\xea\x4c\xe1\x67\x51\xfe\x26\x67\xe9\xf3\xfa\x64\x33\xcb\xc3\xe5\x31\xad\xdc\x5b\xc9\xaf\x5b\x98\x43\x0f\xb2\xe1\x85\x7b\xe3\x7e\x4a\x3b\x9c\x1a\x39\x95\x94\x73\xa7\x1d\x25\xc7\x68\xe4\x98\x76\xea\x74\x82\x4e\x2a\x1b\x96\x1b\x7c\xdd\x07\x1c\xaf\x2c\x0d\x7e\x53\x89\x71\xa7\x9b\x72\xfe\x97\xbd\x57\x49\x16\xcb\x27\xaa\x5b\x49\xd3\xcd\x7c\x87\x5e\xb8\xe2\xb9\x56\x89\xee\x7f\x72\xc3\x91\x62\xfb\xfd\x36\xa8\xa2\xe4\xb3\x84\x61\x05\x06\x74\xb2\x2f\x73\xec\x3f\x01\x00\x00\xff\xff\x54\x83\xe7\x45\x1e\x01\x00\x00"), }, "/housekeeper/5deployment.yaml.template": &vfsgen۰CompressedFileInfo{ name: "5deployment.yaml.template", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 985, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x94\x92\x49\x6b\x1c\x41\x0c\x85\xef\xf3\x2b\x44\xdf\x7b\x96\xe4\x56\xb7\x90\x98\x10\x48\xc8\x80\x49\xee\x72\xf5\xcb\xb8\x18\xd5\x12\xa9\xda\x76\x63\xfc\xdf\x43\xdb\xb3\x74\x1b\x82\x3d\x3a\xaa\x9e\x3e\x49\xa5\xc7\x25\xfc\x86\x5a\xc8\xc9\x11\x97\x62\xab\xbb\xcd\x62\x1f\x52\xe7\xe8\x0b\x8a\xe4\x21\x22\xd5\x45\x44\xe5\x8e\x2b\xbb\x05\x51\xe2\x08\x47\xb7\xb9\x37\xec\x81\x02\x6d\x73\x81\x72\xcd\xda\x46\x4e\xbc\x83\x1e\x44\x56\xd8\xbf\x52\xda\x60\x15\x71\x41\x24\x7c\x03\xb1\x11\x47\xe4\x73\xaa\x9a\xa5\x2d\xc2\xe9\x2d\xb2\x15\xf8\xb1\xca\x20\xf0\x35\xeb\x0b\x21\x72\xf5\xb7\xdf\x27\xc8\xcb\xa0\x44\x8a\x22\xc1\xb3\x39\xda\x2c\x88\x2a\x62\x11\xae\x38\xc0\x27\xbb\x8f\x21\xb3\x3e\x97\x76\x22\x3a\xae\x70\xac\xe5\x90\xa0\x27\x5e\x4b\x3e\xc7\xc8\xa9\x3b\x37\x68\x69\xf5\x26\x74\x8c\x10\x79\x07\x47\x8f\x8f\xcb\x9f\x07\xc9\xb7\x31\xf3\x4b\xe5\xe9\x69\x2e\xda\xf6\x22\xdb\x2c\xc1\x0f\x8e\x3e\xc9\x3d\x0f\x76\x7a\x7f\xd7\x75\x5f\xc2\xe0\x7b\x0d\x75\xf8\x9c\x53\xc5\x43\x3d\x0f\x4c\xc4\x22\xf9\x7e\xab\xe1\x2e\x08\x76\xb8\x32\xcf\xc2\xf5\xd9\x62\x7f\x58\x0c\x27\xa5\xc2\x72\xaf\x1e\x36\x2d\x96\x10\x43\x9d\x65\x88\x7c\xe9\x1d\x6d\xd6\xeb\x38\xcb\x46\xc4\xac\x83\xa3\x8f\xeb\x1f\x61\xf2\xa0\xf8\xdb\xc3\x2e\x43\x7c\x38\x23\x2a\x34\x86\xf4\x3c\xef\x57\x65\x8f\x2d\x34\xe4\xee\x1a\x3e\xa7\x6e\x74\xc8\xfa\xa0\x4b\xb9\xc3\xf5\xcc\x87\xc7\x6c\xab\x59\xb0\xdc\xf7\x37\xd0\x84\x0a\x5b\x86\xbc\x7a\x65\x93\xa6\x39\x76\xcb\x32\xfe\x6f\xc8\xc9\xa6\x27\xdf\x63\x70\xd4\xfc\x0f\x16\xd9\x2a\xb4\x99\x6c\x72\xbc\x92\xa3\xe6\xea\x21\x58\xb5\xe6\x5f\x00\x00\x00\xff\xff\x47\x90\x58\x37\xd9\x03\x00\x00"), }, "/housekeeper/6daemonset.yaml.template": &vfsgen۰CompressedFileInfo{ name: "6daemonset.yaml.template", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 1138, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xac\x93\x41\x6b\x1b\x31\x10\x85\xef\xfe\x15\x83\xef\xeb\x25\x57\xdd\x42\x93\x42\xa1\x71\x4d\x43\x7b\x2d\x93\xdd\x67\xaf\xd8\x91\x46\x48\xda\x4d\x4d\xc8\x7f\x2f\x8a\x5d\x7b\xd7\x14\xe2\x40\x75\x9c\x79\xf3\xcd\x3c\x31\xc3\xc1\xfe\x44\x4c\x56\xbd\x21\x0e\x21\xd5\xe3\xcd\xa2\xb7\xbe\x35\x74\xc7\x70\xea\x1f\x91\x17\x0e\x99\x5b\xce\x6c\x16\x44\x9e\x1d\x0c\x75\x3a\x24\xf4\x40\x40\xac\x1a\xf5\x39\xaa\x08\x62\xe5\xd8\xf3\x0e\xf1\x28\x4b\x81\x9b\x0b\x6d\xda\xa7\x0c\xb7\x20\x12\x7e\x82\xa4\x02\x24\x3a\x02\xaa\x20\xec\xdf\x67\xa7\x80\xa6\xd4\x25\x08\x9a\xac\xf1\xc0\x70\x9c\x9b\xee\xeb\x04\xfa\x51\x2c\x51\x86\x0b\xc2\x19\x47\xe0\xc4\x73\x79\x32\x63\x7f\x9c\x4e\xf4\x77\xf0\xf2\xb2\x0a\x22\x67\xab\x7e\x82\xac\xa8\xc7\xde\xd0\xd2\x6b\x8b\x2a\xaa\x60\xd5\x0f\x4f\x88\x1e\x19\x69\x65\xb5\x76\x9c\x32\xe2\xf2\xa4\x27\xd2\x50\x28\x1a\x0d\x2d\xef\x7f\xdb\x94\xd3\x34\x89\xed\x16\x4d\x36\xb4\x5c\xeb\x63\xd3\xa1\x1d\x04\xcb\xab\x7b\x3d\x6b\xec\xff\x4f\xaf\xf2\x1b\x6c\x3d\xe2\xd9\x69\x75\xed\x16\x9d\xfe\xda\x39\xf6\xad\x99\x34\xac\xa8\xbe\xb6\xda\x3a\xde\xc1\xd0\xcb\xcb\xea\xd3\x49\xf5\xa5\xc4\x7e\x44\x79\x7d\xbd\xd0\x6d\x06\x91\x8d\x8a\x6d\xf6\x86\x6e\xe5\x99\xf7\xe9\x2c\x18\x55\x06\x87\x07\x1d\x7c\x4e\xf3\x59\x0e\x76\x86\xb0\x8b\xdc\xa2\x6a\xdf\x0e\x67\x22\x20\x72\xa5\x68\xc3\xb9\x33\x54\x8f\x1c\x6b\xdf\xb7\xe7\x3c\xfc\xf8\x2f\xdc\xfa\xdb\xdd\xfd\xaf\xf5\xed\xc3\xfd\x8c\x34\xb2\x0c\xf8\x1c\xd5\x99\x59\x98\xb6\x16\xd2\x7e\xc7\xf6\x22\x4c\xd3\xfb\x1e\x6f\x2e\x92\x6f\x45\x87\xb1\xca\x76\xae\xca\x36\xac\xd9\x61\x31\x35\x3c\xdb\xd0\x77\x9c\x76\x9a\x0e\x36\x67\x8d\xc2\xcc\xf8\x9f\x00\x00\x00\xff\xff\x09\x7d\x30\x1a\x72\x04\x00\x00"), }, "/terraform": &vfsgen۰DirInfo{ name: "terraform", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/terraform/generalos": &vfsgen۰DirInfo{ name: "generalos", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/terraform/generalos/libvirt": &vfsgen۰DirInfo{ name: "libvirt", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/terraform/generalos/libvirt/master.tf.template": &vfsgen۰CompressedFileInfo{ name: "master.tf.template", - modTime: time.Date(2024, 5, 21, 1, 34, 34, 879652527, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 3341, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x57\x5b\x6b\xe4\x36\x14\x7e\xf7\xaf\x38\x15\x7d\xd8\x0d\x44\x49\xcb\xd2\x42\x61\x28\x6d\x02\x6d\x1e\x96\x86\xb4\xfb\xb4\x04\xa3\xd8\x67\x66\x44\x64\xc9\xd5\xc5\xe9\x74\xf0\x7f\x5f\x24\x4b\xbe\x8d\x9d\xcd\x4e\x20\xe3\xb1\x7c\xce\x77\x3e\x7d\xe7\x22\x8f\x45\xad\xd9\x56\xe9\x0a\x8e\x19\x80\xc6\x7f\x1d\xd7\x58\xe6\xb5\x56\x0d\x2f\x51\x9b\xb0\x0c\x20\xf8\x53\xc3\xb5\x85\x4d\xbc\x07\x30\xca\xe9\x02\x61\x03\xa4\xac\x58\xd1\xf0\x82\xe9\xab\x68\x45\xa2\x49\x83\xda\x70\x25\xbd\xcd\x35\xfd\x99\xfe\xd4\xad\xb7\x99\xff\x6f\xb3\x2c\xc5\x00\x92\xfc\x02\xb8\xd3\xdc\x7b\x1c\x8f\xf4\x5e\x30\xeb\xa9\xd1\x4f\x0f\x77\x6d\x4b\xbc\x4f\xc3\x34\x67\x4f\x02\x81\x14\xc2\x19\x8b\x3a\xe7\x65\xe7\x66\x0f\x35\x7a\xf8\x0d\x18\xab\xb9\xdc\x65\x00\x25\x6e\x99\x13\x36\xa2\xdd\x74\x0e\x77\xb7\x27\x50\x5c\x1a\xcb\x64\x81\x79\xa1\x9c\xb4\x6f\x84\xfb\xc8\x3c\x1a\xbd\xf1\x2e\xeb\x88\x7b\x65\xac\x64\x15\xce\x41\x05\x37\xf6\x5d\x87\xfc\x7e\x02\x3d\x20\xff\x19\x5d\xdb\x76\x05\x9b\xd7\x67\xa0\xde\xdd\xcf\xf1\x7a\x21\xeb\xe6\x43\x5e\xf0\x52\xbf\x51\x80\x3e\x3b\x37\x77\xb7\x0f\xeb\xe9\xf1\xa8\x3b\x66\xf1\x85\x1d\xbe\x15\xf8\x8f\xce\xed\x95\x7c\xd5\xee\x0c\x09\x6e\xee\x3f\xad\x6a\xaa\x59\x75\x06\xe2\xc3\x6f\x1f\x57\x11\x4b\x6e\x9e\xcf\x80\xbc\xe5\xe6\x79\x15\xb3\x10\xca\x95\x5c\x72\x7b\x06\xf0\xef\x4a\xd9\x1b\x25\xb7\x7c\xd7\xc1\x6b\x8c\x9d\x9c\xba\x30\xaf\x95\x12\x04\x48\x77\xf1\xf8\xbe\x0a\x7d\x6e\xbe\x3f\x36\x4c\xd3\xa1\xf1\xda\xcb\x60\x93\x18\xf8\x51\xc0\xb5\xbf\xad\x99\xdd\xfb\xdb\xab\xa6\x1b\x0a\x69\x30\x5c\xf1\x8a\xed\xd0\x5c\x9d\x00\x91\x65\x26\x8d\x12\xce\xf7\x0e\x49\x5f\x7a\x36\xb0\xcc\x27\xda\x79\x0a\x4a\x89\x28\xc9\xb0\x2b\x1a\x3e\x3c\x40\x36\x1e\x60\xe3\x9a\xfb\xeb\xef\x3b\xcf\xb1\xfd\x2a\xa5\x21\xaf\x61\x6a\x40\xff\xb7\x01\xcf\x6a\x3a\x53\x06\xda\x83\x55\xa4\x7f\x32\x2a\x3e\x07\x0f\xca\x65\x89\xff\x3d\xb6\x97\x21\x4e\x06\xf0\xc4\x0c\xc6\xe8\x39\x2f\x47\x1b\xeb\xd6\x68\xbc\xf0\x72\xd8\xfc\x10\x6b\x5d\x04\xfe\xff\x94\xd5\x84\x92\x8f\x3d\xa1\x03\x17\xf0\xc3\xf5\x8f\x1f\xa6\x97\x65\xa1\xfa\x1a\x8d\x1d\x40\x66\x45\x3b\xa8\xf6\x55\xc1\xde\xaa\x15\xe5\x46\x91\xc9\xf6\x5f\xd9\xb9\x33\xa8\xf3\x92\x59\x06\x1b\xf0\x17\x6a\xb1\xaa\x05\xb3\x98\x6f\xb9\x40\xda\x3f\xa6\x17\x54\xa3\x2c\x51\x63\x39\x89\xe6\x77\x1d\xdc\xc9\xc4\x91\x00\xe9\x5d\x67\x1b\x5d\xd9\x67\x72\x87\x0d\x78\x80\x77\x53\xa3\x24\xda\x24\xf6\xfb\x65\xc9\x25\xda\x17\xa5\xbd\xd6\xfd\xb7\xe3\xb2\x90\xe3\x9e\x91\x18\x0e\xec\x4a\x95\x83\x95\x64\x61\xad\x54\x15\xe3\x72\xcd\x93\x0a\x55\xb0\xd0\xfe\xac\x2c\x35\x1a\x83\x06\x36\xf0\x79\x62\x95\xce\x94\xc7\xcc\xc3\xed\x8b\x3a\xbe\x3f\xa0\xf4\x23\xcd\x97\xb1\xd5\x0e\xc3\x1b\x81\x37\x90\x66\xf6\x3c\x84\x8e\x26\x00\x21\x60\xae\xa4\x38\xcc\x1c\xb5\x72\x16\x93\xaf\x8f\x37\xe8\x7d\x42\x25\xd8\xc4\x13\x69\xc9\x26\x3e\x4a\xd0\xcc\x59\x65\x2c\x0b\xef\x3e\x21\xe4\xa2\xf4\x9d\x52\x04\xc8\x0e\x25\x6a\x26\x94\x59\x9c\x0d\x6f\x1c\x0e\x73\xb3\xc5\x72\xf7\xe8\xb5\x8b\x7b\x0e\xd9\xdb\x00\xf1\x96\x97\x35\x33\xc6\xee\xb5\x72\xbb\x3d\xc9\xba\x17\xae\xc6\x9b\xbe\xc2\xa3\x76\x73\xec\x0a\x2b\xa5\x0f\xab\x1e\x9a\x55\x27\x6c\x52\xad\x9e\x8c\x9d\xe9\x2c\xa0\xfd\x2d\xbd\xa0\xbc\x3c\x09\xcc\x8a\x3d\x97\x38\x9e\x94\xe1\xf4\x0a\xab\xff\x1c\xea\x30\x9b\xc7\x79\x49\x66\xb1\x20\xd2\x69\x38\xf2\x7f\x6e\x2a\x12\xea\x8b\x9b\xe7\x28\xd8\x2b\x93\x34\x70\x5c\x62\x16\xea\x21\xb6\x56\xce\xa5\x45\xbd\x65\x05\x46\xc0\xb4\xde\x1f\x4f\xb3\xae\xa4\xfd\xb5\x9b\x3f\x00\x29\xab\xdf\x96\xf3\x71\xb7\x2d\xf9\xf1\x7a\x3a\xb1\xbf\xf3\xed\xec\x84\x20\xf0\x6b\xd7\x9b\x6b\x96\x8f\xf0\x0b\x78\xc3\x10\xe3\x85\x71\x9b\x6f\x95\xce\x05\x32\x83\xb3\x6e\xdb\x69\x56\xef\x79\x91\xfa\x6d\x2c\xf8\x06\x48\x23\x0b\x12\x7f\x33\x18\x8b\x32\x4f\xef\x06\x91\x36\x49\x28\x85\x92\x46\x09\x5c\x06\xa9\xed\xa1\x03\xb1\x4c\xef\xd0\x8f\xef\xd0\x80\xe4\x9a\xa4\x5f\x0f\xca\xd9\xda\x59\x20\xbe\x67\xbb\x5e\x6b\x98\x70\x38\x12\xbe\xeb\x49\xda\x77\x24\xbd\xa0\x27\xc9\xa3\xd7\xb4\x97\x33\x6b\xbf\x04\x00\x00\xff\xff\xc5\x64\x2c\xc7\x0d\x0d\x00\x00"), }, "/terraform/generalos/libvirt/worker.tf.template": &vfsgen۰CompressedFileInfo{ name: "worker.tf.template", - modTime: time.Date(2024, 5, 21, 1, 34, 48, 870839785, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 2640, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x56\x51\x6b\xe4\x36\x10\x7e\xf7\xaf\x98\x8a\x3e\xdc\x05\xa2\xa6\xe5\x68\xa1\x60\x4a\x9b\x7b\x68\x1e\x8e\x86\x6b\x8f\x3e\x1c\x87\x51\xac\xd9\x5d\xb1\xb2\xe4\x8e\x24\xa7\xe9\xe2\xff\x5e\x64\xcb\x6b\x7b\xd7\xde\xa6\x1b\x08\x5e\x4b\xf3\x7d\xf3\xe9\xd3\x8c\x2c\x8f\x44\x62\x63\xa9\x82\x43\x06\x40\xf8\x57\x50\x84\xb2\xa8\xc9\x36\x4a\x22\xb9\x6e\x18\x40\xab\xa7\x46\x91\x87\x3c\xbd\x03\x38\x1b\xa8\x44\xc8\x81\xc9\x4a\x94\x8d\x2a\x05\x7d\x93\xa2\x58\x0a\x69\x90\x9c\xb2\x26\xc6\xdc\xf1\x1f\xf8\xf7\xfd\x78\x9b\xc5\xff\x36\xcb\x86\x1c\xc0\x06\x5c\x47\x1e\x48\x45\xc4\xe1\xc0\x1f\xb5\xf0\x51\x1a\xff\xf4\xf1\xa1\x6d\x59\xc4\x34\x82\x94\x78\xd2\x08\xac\xd4\xc1\x79\xa4\x42\xc9\x1e\xe6\x5f\x6a\x8c\xf4\x39\x38\x4f\xca\x6c\x33\x00\x89\x1b\x11\xb4\x4f\x6c\xf7\x3d\xe0\xe1\xfd\x19\x95\x32\xce\x0b\x53\x62\x51\xda\x60\x92\x8a\x39\xf6\x4f\x4b\x7b\x24\x7e\x1f\xe7\xd7\xe1\x3b\xeb\xbc\x11\x15\x9e\x0a\xd2\xca\xf9\x37\xbd\xaa\xb7\x33\xea\x91\xf9\xd7\x04\x6d\xdb\x15\x6e\x55\x5f\xc1\xfa\xf0\xb8\xca\x57\xd6\xe1\x0a\xc2\xfb\xc7\x4f\xab\x8c\x24\xaa\x2b\x18\x3f\xfe\xfc\x61\x95\x51\x2a\xb7\xbf\x82\xf2\xbd\x72\xfb\xf5\x75\x6b\x1b\xa4\x32\xca\x5f\x41\xfc\x8b\xb5\xfe\xde\x9a\x8d\xda\xf6\xf4\x84\xa9\x09\x86\x02\x2e\x1a\xab\x43\xdc\x7f\x36\xfc\x88\x39\xe2\xbe\x76\x29\xd8\xd7\x87\x46\x10\x1f\x2b\xb7\xbd\x4d\x71\x19\x40\x6d\xad\x5e\x8b\x8a\x73\x31\x66\xec\xb9\x69\x77\xfc\xf6\xfb\x43\x25\xb6\x98\xea\xf2\x82\xa8\xd1\xcf\xae\xd0\x61\xf2\x97\x43\xcc\x39\x6f\x84\x51\xfa\x34\x2e\xc9\x3b\x2b\xfa\xcf\x1d\x86\x2b\x23\xf1\xef\x2f\xed\x6d\x97\x2b\x03\x78\x12\x0e\x93\x82\xa2\x63\x7b\x9d\x0d\x0b\x19\x17\x0d\x51\xff\x9c\xea\x9b\x89\x8b\x2a\x66\xc2\xe0\x06\xbe\xbd\xfb\xee\xdd\xfc\xb1\x6c\xdb\xb1\x52\x52\x1d\xb2\x93\xd2\x19\x3d\xfc\x4f\xf3\x5e\xeb\x1a\x57\xce\xce\x4d\xb8\xb8\xfa\xe0\x90\x0a\x29\xbc\x80\x1c\xe2\x83\x7b\xac\x6a\x2d\x3c\x16\x1b\xa5\x91\x1f\xa7\xf9\x0d\x27\x34\x12\x09\xe5\x2c\x5f\x5c\x77\x07\x67\x33\x20\x03\x76\x84\x9e\x2c\x75\x65\xa5\x03\x1c\x72\x88\x04\x6f\xe6\x41\x83\x6d\xb3\xdc\x6f\x97\x4d\x97\xb6\x12\xca\x30\x60\x5b\x34\x48\x42\x5b\xb7\x5c\xb0\xaf\xac\xd7\x93\xb0\x45\xd7\x23\x7b\x1d\xd2\x77\xad\xb2\xb2\x2b\xd1\x18\x79\x5b\x0b\xe7\xfc\x8e\x6c\xd8\xee\x58\xd6\x7f\xb8\x9a\x18\x7a\x41\x47\x1d\x4e\xb9\x2b\xac\x2c\xbd\xac\x22\x48\x54\x67\x6a\x06\xc3\x8e\x88\xe5\x92\xe4\xc7\x57\x7e\xc3\x95\x3c\x4b\x2c\xca\x9d\x32\x38\x6d\xa4\xc3\x81\x7f\xe8\x47\xff\x78\xa9\xbb\x03\x03\x40\x04\x6f\x9d\x17\x34\x66\xf3\x14\x70\x72\x34\x4e\xf0\xfb\xa6\x62\x59\x3c\x1c\x95\xdb\x27\xc3\x52\x6b\x2b\x39\x91\xd9\x8f\xf1\x4e\xe3\x92\xb2\x36\x72\x18\xf4\xcf\x96\xf6\x85\x32\x1e\x69\x23\x4a\x4c\x84\xc3\xf8\xa5\x53\xd3\x60\xba\x63\x0c\x1b\xfa\xff\xb6\x1b\x40\x48\x49\xe8\x1c\xba\x45\x9c\xaa\xe7\x67\xc6\x57\x39\x30\x13\xb4\x66\xf0\x13\x7c\xbe\x14\xf9\x05\x7e\x84\x18\xd8\xe5\x78\x16\xca\x17\x1b\x4b\x85\x46\xe1\x70\xf4\xb5\x5b\xfd\x96\x44\xbd\x53\xe5\x70\xbd\x9a\x7a\x9d\x03\x6b\x4c\xc9\xd2\xb5\xcb\x79\x34\x45\x37\x9d\x03\x4b\xb2\xd9\xc0\x52\x5a\xe3\xac\xc6\x65\x92\xda\xbf\xf4\x24\x5e\xd0\x16\x7d\x51\xdb\xee\xfe\xc6\xee\xd8\x70\x01\xb3\xc1\xd7\xc1\x03\x53\x75\xf3\xae\x6f\xb3\x46\xe8\x80\x93\x9d\xec\xdb\x91\x1f\x9b\x91\xdf\xf0\xb3\x7d\xe3\x77\xfc\x68\x67\xd6\xfe\x1b\x00\x00\xff\xff\x85\x4d\x1b\x72\x50\x0a\x00\x00"), }, "/terraform/generalos/openstack": &vfsgen۰DirInfo{ name: "openstack", - modTime: time.Date(2024, 5, 17, 8, 16, 33, 496540174, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/terraform/generalos/openstack/master.tf.template": &vfsgen۰CompressedFileInfo{ name: "master.tf.template", - modTime: time.Date(2024, 5, 21, 1, 30, 33, 652460138, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 4739, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x58\x6d\x6f\xdb\x36\x10\xfe\xae\x5f\x71\x13\xf6\xa1\x2d\x16\xd5\x2f\x79\xdb\x80\x60\xc8\xd2\x61\x0b\xb0\x16\x41\xb0\x7c\x59\x31\x08\x8c\x74\x72\x08\x53\x22\xc7\x17\x35\xad\xe1\xff\x3e\x50\xa4\x64\x4b\x96\x6c\xc7\x49\x80\xa2\x28\x40\x1d\xef\x9e\xe7\xee\xc8\xe3\x9d\xa3\x51\x4a\x92\x71\x99\xc3\x22\x00\x90\xf8\x9f\xa1\x12\xd3\x58\x48\x5e\xd2\x14\xa5\xaa\xc4\x00\x5c\x60\xa1\x34\x49\xe6\x70\xe1\x25\x00\x8a\x1b\x99\x20\x5c\x40\xd8\x80\x1c\xd5\x76\x47\x8d\xc1\xfb\x66\x15\x7a\xbb\x12\xa5\xa2\xbc\xb0\x86\xe3\xe8\x64\x12\x8d\xdd\xc6\x32\xb0\xff\x97\x41\x50\x63\x40\xb8\x32\xad\x48\x8d\x42\x19\x17\x24\x47\x00\x6b\xbc\x58\x44\x37\x8c\x68\xcb\x1b\xdd\x29\x94\x76\x67\xb9\xb4\x60\x82\x28\xf5\x85\xcb\x14\x36\x15\x6f\xfc\x96\x53\xd4\x58\x90\x42\x3b\xcc\x8e\xe2\xdf\xd5\xd6\xa7\x06\x93\x18\xfd\x10\x1b\xc9\x7a\x30\x2f\x8d\x7e\xb8\xbb\xfd\xcb\xe9\x49\x9c\xd9\xe0\xa0\x47\xef\xb6\xda\xb2\x6a\xcb\x20\x28\x89\xa4\xe4\x9e\x21\x84\x09\x33\x4a\xa3\x8c\x69\xea\xc2\xd4\x5f\x05\x3a\x6b\xa5\x25\x2d\x66\x01\x40\x8a\x19\x31\x4c\x7b\xc0\x2b\x67\x70\xfd\x61\x03\x8a\xda\x74\x15\x09\xc6\x09\x37\x85\xde\x13\xee\x23\xb1\x68\xd1\x95\x35\x19\x46\x7c\xe0\x4a\xdb\x3c\x75\x41\x19\x55\xfa\x8d\x43\x7e\xdb\x82\x5e\x21\xff\xe9\x4d\x97\xcb\x21\x6f\x85\x39\x00\xf6\xea\xe6\x6e\x10\x51\x92\xfc\x00\xc4\xdb\xcb\x8f\x83\x88\x29\x55\xf3\x03\x20\x3f\x50\x35\x1f\xc4\xe4\x8a\xe6\x64\x86\x7b\x9e\x53\x73\x8f\xfe\x60\xd6\xba\xbe\x9a\x2d\x68\x52\x12\xca\xc8\x3d\x65\x54\x7f\x8d\xbf\xf1\xe2\xc9\xd8\x97\x6b\x00\xff\xf0\x02\x87\x2f\x84\xad\xc6\x94\x68\x72\x40\x52\x7e\xe3\x5c\x5f\xf1\x22\xa3\xb3\xcd\xd4\x68\x5b\xc8\x2c\x2e\x50\x3f\xd5\xf5\x6b\x6f\xfb\x09\xf5\x17\x2e\xe7\xc3\x9e\x53\x71\x80\xcf\xd7\x37\x5d\x5f\xf1\xf1\x70\x5f\x7f\x7f\xec\xf3\x55\xa2\x7f\x53\x57\x2f\x5f\x9c\xf0\x5c\x18\x8d\x71\xc6\x48\xc9\x65\x5c\x4e\x42\x08\xdd\xda\x71\x56\x95\xee\x5f\x9b\x92\xc8\xa8\xfd\x04\x04\x00\xfe\xc1\xdc\x54\xa8\x2b\xfa\x73\xa5\x19\xd1\x22\xc5\xc7\x7f\x03\x80\x32\x11\x46\xf5\x22\x0a\xd3\xd5\x95\x24\x87\x5e\x70\x49\xf2\xae\xae\xad\xa0\x5e\x5d\xbb\xd1\x55\xa6\x2a\x16\xe6\x9e\xd1\xa4\xea\x2f\xd2\xe0\x60\x82\xee\x19\x4f\xe6\x4a\x73\x49\x66\x18\x97\x9c\x99\x1c\xe3\x72\x1a\x42\xe8\xd6\xeb\x59\xda\x9a\xa1\x3d\xb3\xa3\xe8\x37\xdc\x23\x82\x1d\xa7\xa9\x30\x99\x49\x6e\x84\x3b\xcf\xfa\xcb\xf9\xba\x3a\xb0\xaa\x83\xfc\xb8\xb0\x54\xab\x26\xb1\x3c\xca\xab\x1b\x19\x56\xb7\x4b\x25\x92\x0a\xed\xdb\x69\x8d\x03\x19\x97\x30\x3f\x57\x50\x6b\xda\x93\x32\x0c\x7d\xeb\xce\x24\xcf\x63\xc1\xa5\xae\x08\x26\x93\x4a\xa8\x79\x2d\x5a\x13\x52\x61\x27\x01\xcd\x13\xce\xaa\x73\x48\x84\xeb\xd5\x09\x4d\xe5\x9a\x8b\xa3\xa8\xfa\xf7\x7e\x14\x56\x3d\x7c\x1b\xdb\xd1\xb8\x87\xcd\x0b\x3b\x6c\x34\xc9\x9f\x4d\x77\x3e\xea\xa1\xf3\xc2\x97\x0f\xee\xf8\x78\xda\x43\x57\x4b\x5f\x9e\x6f\x32\x3d\xfb\xb9\xef\xf0\xa6\xaf\x16\xe1\xb8\x97\xb0\x96\xbe\x3c\xdf\x69\x7f\x4a\x4f\x5f\x2f\xa7\xe3\xd1\xe4\xf8\xbc\x2f\xc6\x46\xfe\x2a\x9c\x27\xa3\x7e\xce\x93\xd7\x3a\xc9\xe9\x68\x34\xea\xe3\x9c\x4e\xce\x4e\xcf\xbe\x17\x4e\x93\xee\xc5\xb9\xe3\xb1\x6d\x9e\xe9\xea\xb1\xad\xbf\xba\xed\x13\xa0\xbf\x93\x6d\xf6\xd1\x21\xcd\xa1\x96\x51\x0d\x79\x71\xcb\xbe\x63\xe9\x07\xc1\x00\xc0\xb7\xf9\x76\x0f\xd8\xaf\x31\x61\x62\xa4\x1d\xfb\xaa\x16\xa0\x9c\xe5\xe7\xad\xad\x27\xaa\xd7\x91\x05\xb4\x20\x1b\xf3\x63\x4d\xbf\xb1\x51\xff\x1e\xb3\x23\xe0\x7a\x46\x34\xe6\x82\x11\x8d\x19\x65\xf8\xa6\xe5\x78\x3d\x30\xb6\x1c\xff\x09\x16\x50\x47\xb4\x57\xa4\xb0\x7c\x6b\xef\x58\xe1\x06\x27\x7f\xcd\xfa\xd2\xb5\x1a\xce\xdc\x4d\xa4\x8f\x98\xc6\x54\xc4\xe5\x71\x97\x87\x8a\x36\xc3\x0f\x17\x10\x16\x86\xb1\x10\x7e\xdd\xae\xf8\x0b\x58\xb5\x6d\x57\xd0\xbb\x49\x8b\x59\x9c\x31\x4e\x34\x2d\x66\x54\xd4\x43\x9c\xfd\x16\x7b\xcc\x27\x82\x73\x56\xc7\xb5\x3e\x74\xee\x1e\x19\x1b\x46\xa2\x14\x4f\x28\xd1\xbe\x06\xb2\x75\xd1\x66\x21\x0c\xf8\x51\xe3\xc5\x54\xc0\x05\xec\x0e\x32\xf2\x21\x46\xef\x22\x92\xa6\x12\x95\xda\xa8\x8c\x26\xb3\x69\x0b\xb1\xa7\x72\x1b\x77\xa2\x77\x11\x4d\x9f\x34\x6c\xf9\xa1\x90\x68\x4d\x92\x07\x97\x80\x96\x68\xef\x04\xbc\x90\xbb\x00\x9e\x9e\xa6\x15\xd7\xae\x59\x36\x72\xab\xfe\xc0\xb9\xd1\xc2\xe8\xf5\x5f\x37\x45\xc6\x5d\x44\x25\x61\x06\x9b\x3f\xd8\x34\x15\xd1\x39\xbd\x1d\xce\xfb\xc3\x8d\x46\xd1\x5a\x05\xb9\x8a\x7a\xf6\x75\x70\x95\xf3\x7f\x00\x00\x00\xff\xff\xb5\xf7\x6b\xd0\x83\x12\x00\x00"), }, "/terraform/generalos/openstack/worker.tf.template": &vfsgen۰CompressedFileInfo{ name: "worker.tf.template", - modTime: time.Date(2024, 5, 21, 1, 33, 12, 230546350, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 4720, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x58\x6d\x6b\xe4\x36\x10\xfe\xee\x5f\x31\x35\xfd\x70\x77\x34\xbe\x7d\xc9\x5b\x0b\xa1\xa4\xb9\xd2\x06\xda\x23\x84\x86\x42\x8f\x62\x14\x7b\xbc\x11\x2b\x5b\xaa\x5e\x9c\xdc\x2d\xfb\xdf\x8b\x2c\xd9\xbb\xf6\xda\xbb\x9b\xbd\x04\x8e\xe3\x40\x1e\xcd\x3c\xcf\xcc\x48\xa3\x99\x8d\x46\x29\x49\xc6\x65\x0e\x8b\x00\x40\xe2\x7f\x86\x4a\x4c\x63\x21\x79\x49\x53\x94\xaa\x12\x03\x70\x81\x85\xd2\x24\x99\xc3\x85\x97\x00\x28\x6e\x64\x82\x70\x01\x61\x03\x72\x54\xdb\x1d\x35\x06\xef\x9b\x55\xe8\xed\x4a\x94\x8a\xf2\xc2\x1a\x8e\xa3\x93\x49\x34\x76\x1b\xcb\xc0\xfe\x5f\x06\x41\x8d\x01\xe1\xca\xb4\x22\x35\x0a\x65\x5c\x90\x1c\x01\xac\xf1\x62\x11\xdd\x30\xa2\x2d\x6f\x74\xa7\x50\xda\x9d\xe5\xd2\x82\x09\xa2\xd4\x23\x97\x29\x6c\x2a\xde\xf8\x2d\xa7\xa8\xb1\x20\x85\x76\x98\x1d\xc5\xbf\xaa\xad\x8f\x0d\x26\x31\xfa\x21\x36\x92\xf5\x60\x5e\x1a\xfd\x70\x77\xfb\x87\xd3\x93\x38\xb3\xc1\x41\x8f\xde\x6d\xb5\x65\xd5\x96\x41\x50\x12\x49\xc9\x3d\x43\x08\x13\x66\x94\x46\x19\xd3\xd4\x85\xa9\x3f\x0b\x74\xd6\x4a\x4b\x5a\xcc\x02\x80\x14\x33\x62\x98\xf6\x80\x57\xce\xe0\xfa\xc3\x06\x14\xb5\xe9\x2a\x12\x8c\x13\x6e\x0a\xed\xe0\xda\xb6\x7f\x73\x39\x47\x19\x5d\xd9\xfd\x61\xf3\x07\xae\xb4\x4d\x4a\xd7\x21\x46\x95\x7e\xe3\xbc\x7a\xdb\x82\x5e\x21\xff\xee\x4d\x97\xcb\x21\xd7\x84\x39\x00\xf6\xea\xe6\x6e\x10\x51\x92\xfc\x00\xc4\xdb\xcb\x3f\x07\x11\x53\xaa\xe6\x07\x40\x7e\xa0\x6a\x3e\x88\xc9\x15\xcd\xc9\x0c\xf7\x3c\xe3\xe6\xd2\xfc\xc6\xac\x75\x7d\x0f\x5b\xd0\xa4\x24\x94\x91\x7b\xca\xa8\xfe\x1c\x7f\xe1\xc5\xb3\xb1\x2f\xd7\x00\xfe\xe1\x05\x0e\x5f\x08\x5b\x7a\x29\xd1\xe4\x80\xa4\xfc\xc2\xb9\xbe\xe2\x45\x46\x67\x9b\xa9\xd1\xb6\x6a\x59\x5c\xa0\x7e\xae\xeb\xd7\xde\xf6\x23\xea\x47\x2e\xe7\xc3\x9e\x53\x71\x80\xcf\xd7\x37\x5d\x5f\xf1\xe9\x70\x5f\x7f\x7d\xea\xf3\x55\xa2\x7f\x40\x57\xcf\x5c\x9c\xf0\x5c\x18\x8d\x71\xc6\x48\xc9\x65\x5c\x4e\x42\x08\xdd\xda\x71\x56\x65\xed\x9f\x96\x92\xc8\xa8\x5d\xef\x01\x80\x7f\x1d\x37\x15\xea\x8a\xfe\x54\x69\x46\xb4\x48\xf1\xe9\xdf\x00\xa0\x4c\x84\x51\xbd\x88\xc2\x74\x75\x25\xc9\xa1\x17\x5c\x92\xbc\xab\x6b\x2b\xa8\x57\xd7\x6e\x74\x95\xa9\x8a\x85\xb9\x67\x34\xa9\x9a\x89\x34\x38\x98\xa0\x7b\xc6\x93\xb9\xd2\x5c\x92\x19\xc6\x25\x67\x26\xc7\xb8\x9c\x86\x10\xba\xf5\x7a\x96\xb6\x66\x68\xcf\xec\x28\xfa\x05\xf7\x88\x60\xc7\x69\x2a\x4c\x66\x92\x1b\xe1\xce\xb3\xfe\x72\xbe\xae\x0e\xac\x6a\x17\xdf\x2f\x2c\xd5\xaa\x23\x2c\x8f\x1e\xab\x1b\x19\x56\xb7\x4b\x25\x92\x0a\xed\x7b\x67\x8d\x03\x19\x97\x30\x3f\x57\x50\x6b\xda\x93\x32\x0c\x7d\x9f\xce\x24\xcf\x63\xc1\xa5\xae\x08\x26\x93\x4a\xa8\x79\x2d\x5a\x13\x52\x61\xdb\xbe\xe6\x09\x67\xd5\x39\x24\xc2\x35\xe6\x84\xa6\x72\xcd\xc5\x51\x54\xfd\x7b\x3f\x0a\xab\x86\xbd\x8d\xed\x68\xdc\xc3\xe6\x85\x1d\x36\x9a\xe4\x5f\x4d\x77\x3e\xea\xa1\xf3\xc2\x97\x0f\xee\xf8\x78\xda\x43\x57\x4b\x5f\x9e\x6f\x32\x3d\xfb\xb1\xef\xf0\xa6\xaf\x16\xe1\xb8\x97\xb0\x96\xbe\x3c\xdf\x69\x7f\x4a\x4f\x5f\x2f\xa7\xe3\xd1\xe4\xf8\xbc\x2f\xc6\x46\xfe\x2a\x9c\x27\xa3\x7e\xce\x93\xd7\x3a\xc9\xe9\x68\x34\xea\xe3\x9c\x4e\xce\x4e\xcf\xbe\x15\x4e\x93\xee\xc5\xb9\xe3\xb1\x6d\x9e\xe9\xea\xb1\xad\xbf\xba\xed\x13\xa0\xbf\x93\x6d\xf6\xd1\x21\xcd\xa1\x96\x51\x0d\x79\x71\xcb\xbe\x63\xe9\x07\xc1\x00\xc0\xb7\xf9\x76\x0f\xd8\xaf\x31\x61\x62\xa4\x1d\xfb\xaa\x16\xa0\x9c\xe5\xa7\xad\xad\x27\xaa\xd7\x91\x05\xb4\x20\x1b\xf3\x63\x4d\xbf\xb1\x51\xff\xf8\xb2\x23\xe0\x7a\x46\x34\xe6\x82\x11\x8d\x19\x65\xf8\xa6\xe5\x78\x3d\x30\xb6\x1c\xff\x01\x16\x50\x47\xb4\x57\xa4\xb0\x7c\x6b\xef\x58\xe1\x06\x27\x7f\xcd\xfa\xd2\xb5\x1a\xce\xdc\x4d\xa4\x4f\x98\xc6\x54\xc4\xe5\x71\x97\x87\x8a\x36\xc3\x77\x17\x10\x16\x86\xb1\x10\x7e\xde\xae\xf8\x13\x58\xb5\x6d\x57\xd0\xbb\x49\x8b\x59\x9c\x31\x4e\x34\x2d\x66\x54\xd4\x43\x9c\xfd\x16\x7b\xcc\x27\x82\x73\x56\xc7\xb5\x3e\x74\xee\x1e\x19\x1b\x46\xa2\x14\x4f\x28\xd1\xbe\x06\xb2\x75\xd1\x66\x21\x0c\xf8\x51\xe3\xc5\x54\xc0\x05\xec\x0e\x32\xf2\x21\x46\xef\x22\x92\xa6\x12\x95\xda\xa8\x8c\x26\xb3\x69\x0b\xb1\xa7\x72\x1b\x77\xa2\x77\x11\x4d\x9f\x35\x6c\xf9\xa1\x90\x68\x4d\x92\x07\x97\x80\x96\x68\xef\x04\xbc\x90\xbb\x00\x9e\x9e\xa6\x15\xd7\xae\x59\x36\x72\xab\xfe\xc0\xb9\xd1\xc2\xe8\xf5\x5f\x37\x45\xc6\x5d\x44\x25\x61\x06\x9b\xbf\xce\x34\x15\xd1\x39\xbd\x1d\xce\xfb\xc3\x8d\x46\xd1\x5a\x05\xb9\x8a\xfa\xea\xeb\xe0\x2a\xe7\xff\x00\x00\x00\xff\xff\x9d\xd0\xe6\x25\x70\x12\x00\x00"), }, "/terraform/nestos": &vfsgen۰DirInfo{ name: "nestos", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/terraform/nestos/libvirt": &vfsgen۰DirInfo{ name: "libvirt", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/terraform/nestos/libvirt/master.tf.template": &vfsgen۰CompressedFileInfo{ name: "master.tf.template", - modTime: time.Date(2024, 5, 21, 1, 34, 59, 289979233, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 3229, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x56\xdf\x6f\xe3\x36\x0c\x7e\xf7\x5f\xc1\x09\x7b\xb8\x2b\x56\xb7\x1b\x0e\x1b\x30\x20\x18\xb6\x14\xd8\xf2\x70\x58\xd1\xed\x9e\x0e\x85\xa1\xda\x8c\x43\xc4\x96\x3c\x49\x76\x97\x05\xfe\xdf\x07\xc9\x92\x7f\x24\x76\x2f\x97\x02\x8d\x6d\x99\xfc\xf8\x89\xe4\x47\xd9\xa0\x52\x7c\x2b\x55\x09\xc7\x08\x40\xe1\x3f\x35\x29\xcc\x92\x4a\xc9\x86\x32\x54\xda\x2d\x03\x14\xf4\xd2\x90\x32\xb0\xf2\xcf\x00\x5a\xd6\x2a\x45\x58\x01\xcb\x4a\x9e\x36\x94\x72\x75\xe7\xad\x98\x37\x69\x50\x69\x92\xc2\xda\xdc\xc7\x3f\xc5\x3f\x76\xeb\x6d\x64\xff\xdb\x28\x0a\x31\x80\x05\x3f\x07\x5e\x2b\xb2\x1e\xc7\x63\xfc\x58\x70\x63\xa9\xc5\x9f\x9e\x36\x6d\xcb\xac\x4f\xc3\x15\xf1\x97\x02\x81\xa5\x45\xad\x0d\xaa\x84\xb2\xce\xcd\x1c\x2a\xb4\xf0\x2b\xd0\x46\x91\xc8\x23\x80\x0c\xb7\xbc\x2e\x8c\x47\x5b\x77\x0e\x9b\x87\x33\x28\x12\xda\x70\x91\x62\x92\xca\x5a\x98\x0b\xe1\x3e\x72\x8b\x16\xaf\xad\xcb\x32\xe2\x4e\x6a\x23\x78\x89\xa7\xa0\x05\x69\xf3\xae\x43\x7e\x3f\x81\x1e\x90\xff\xf0\xae\x6d\xbb\x80\x4d\xd5\x15\xa8\x9b\xc7\x53\xbc\x3e\x91\x55\xf3\x21\x49\x29\x53\x17\x26\xa0\xaf\xce\x7a\xf3\xf0\xb4\x5c\x1e\x8b\x9a\x73\x83\xaf\xfc\xf0\xb5\xc0\xbf\x77\x6e\x6f\xd4\xab\xaa\xaf\x48\xc1\xfa\xf1\xd3\x62\x4e\x15\x2f\xaf\x40\x7c\xfa\xf5\xe3\x22\x62\x46\x7a\x7f\x05\xe4\x03\xe9\xfd\x72\xe5\x73\x71\x05\xe4\x6f\x52\x9a\xb5\x14\x5b\xca\x3b\x60\x85\x5e\xc3\x41\x7f\x49\x25\x65\xc1\x80\x75\x17\x8b\x6f\xfb\xcf\x56\xe5\xdb\x63\xc3\x55\x3c\x48\xae\xbd\x75\x36\x81\x81\x1d\x02\xa4\xec\x63\xc5\xcd\xce\x3e\xde\x35\xdd\x38\x08\x23\xe1\x8e\x4a\x9e\xa3\xbe\x3b\x03\x62\xf3\x4c\x1a\x59\xd4\x56\x35\x2c\xdc\xf4\x6c\x60\x9e\x8f\xb7\xb3\x14\xa4\x2c\x7c\x4a\x86\x5d\xc5\xee\xc7\x02\x44\xe3\xd1\x35\xee\xb6\x3f\xff\xda\x58\x8e\xed\x17\x29\x0d\x15\x75\xf3\x02\xfa\xbf\x15\x58\x56\xd3\x69\x32\xd0\x1e\xac\x3c\xfd\xb3\x21\xf1\xd9\x79\xc4\x24\x32\xfc\xf7\xb9\xbd\x75\x71\x22\x80\x17\xae\xd1\x47\x4f\x28\x1b\x6d\xac\x5b\x8b\xfd\x85\xb2\x61\xf3\x43\xac\xe5\x24\xd0\x7f\x53\x56\x13\x4a\x36\xf6\x84\x0e\xdc\xc0\xf7\xf7\x3f\x7c\x98\x5e\xe6\x13\x45\xb9\x20\x43\x52\x30\x60\xc3\xed\x38\x5d\x5f\xc8\xd3\xc5\x09\xea\xd1\x47\x1b\x7f\x63\xc7\xa9\x14\x06\x85\xd5\x84\xc1\xb2\x2a\xb8\xc1\x2d\x15\xf8\x6e\x12\x89\x72\x31\x09\xf2\x1d\x1c\x21\x44\x3f\xe5\x3d\xcb\x0a\xda\xf7\xf3\x59\x11\x68\x5e\xa5\xda\x33\x60\xfd\xdd\x71\xd2\x1c\xb3\x6d\x2d\xd0\x9d\xa6\xa5\xcc\x06\x2b\xc1\xdd\x5a\x26\x4b\x4e\x62\xc9\x33\x2e\x64\xca\x9d\x42\x79\x96\x29\xd4\x1a\x35\xac\xe0\xf3\xc4\x2a\x0c\xfc\xe7\xc8\xc2\xed\xd2\xca\x1f\xee\x28\xec\xbc\xb1\x9d\x66\x54\x8d\xee\xb8\xb6\x06\x42\x9f\xbc\x77\xa1\xbd\x09\x80\x0b\x98\x48\x51\x1c\x4e\x1c\x95\xac\x0d\x06\x5f\x1b\x6f\xe8\xb7\x33\x2a\xce\xc6\x1f\x17\x73\x36\xfe\x55\x80\xe6\xb5\x91\xda\x70\xf7\x61\xe2\x42\xce\xa6\xbe\xcb\x94\xcb\xbc\x36\x52\xcf\x6a\xf7\x42\xf1\x5e\xd4\x03\x16\xbd\xaa\xfd\x86\x5d\xe9\x56\xc0\xac\xe5\x6d\xc5\xb5\x36\x3b\x25\xeb\x7c\xc7\xa2\xee\x53\xa8\xb1\xa6\x6f\xf0\xa8\xea\x53\xec\x12\x4b\xa9\x0e\x8b\x1e\x8a\x97\x67\x6c\xa4\x42\xa9\x7b\x61\x8e\x44\x12\x96\xe2\xfe\xe6\x26\xa6\xec\x2c\x22\x4f\x77\x24\x70\x3c\xc2\xdc\xb1\xe2\x56\xff\x3e\x54\x6e\x68\x8e\xab\x11\xcc\x7c\x1b\x84\x63\x6a\xe4\xbf\x6f\x4a\xe6\xba\x8a\xf4\xde\x67\xea\x8d\x11\x67\xad\x66\x99\xb9\x2e\xf0\x82\x4a\x48\x18\x54\x5b\x9e\xa2\x07\x0c\xeb\xfd\xb9\x71\xa2\xc5\xb8\xbf\x76\x03\x02\x06\xa9\x7f\x55\xb1\xc7\x1a\x9b\xf3\xa3\x6a\x3a\x22\xbe\xb1\x22\xae\x8b\x82\xc1\x2f\x9d\x22\x97\x2c\x9f\xe1\x67\xb0\x86\x2e\xc6\x2b\x27\x93\x6c\xa5\x4a\x0a\xe4\x1a\x4f\x34\x96\x2b\x5e\xed\x28\x0d\x2a\x1b\x27\x7c\x05\xac\x11\x29\xf3\x9f\xf1\xda\xa0\x48\xc2\xa1\xed\x69\xb3\x80\x92\x4a\xa1\x65\x81\xf3\x20\x95\x39\x74\x20\x86\xab\x1c\xed\x7c\x75\xb2\x63\xf7\x2c\x7c\xd0\xcb\xda\x54\xb5\x01\x66\x95\xda\x89\xac\xe1\x45\x8d\xa3\xc4\x77\x4a\x8c\x3b\x1d\xc6\x37\xf1\x59\xe5\xe2\xfb\xb8\xcf\x65\xd4\xfe\x1f\x00\x00\xff\xff\x8e\xbd\x3a\xb4\x9d\x0c\x00\x00"), }, "/terraform/nestos/libvirt/worker.tf.template": &vfsgen۰CompressedFileInfo{ name: "worker.tf.template", - modTime: time.Date(2024, 5, 21, 1, 35, 7, 503089157, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 2528, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x56\x51\x8f\xe3\x34\x10\x7e\xcf\xaf\x18\x2c\x1e\xee\x56\xac\x59\xd0\x09\x24\xa4\x0a\xc1\xde\x03\xfb\x70\x62\x75\x70\xe2\xe1\x74\x8a\xbc\xc9\x34\x1d\x35\xb1\xcd\xd8\xce\xb1\x54\xf9\xef\xc8\x89\xd3\x26\xdb\xb4\xf4\x5a\xa9\x6a\xea\xcc\x7c\xf3\xf9\xf3\x37\xb6\x3d\x32\xab\xb5\xe1\x06\x76\x19\x00\xe3\xdf\x81\x18\xcb\xdc\xb2\x69\xa9\x44\x76\xfd\x30\x40\x4d\x4f\x2d\xb1\x87\x55\xfa\x0f\xe0\x4c\xe0\x02\x61\x05\xa2\x6c\x54\xd1\x52\xa1\xf8\xdb\x14\x25\x52\x48\x8b\xec\xc8\xe8\x18\x73\x27\x7f\x94\x3f\x0c\xe3\x5d\x16\xbf\x5d\x96\x8d\x35\x40\x8c\x79\x3d\x78\x60\x8a\x19\xbb\x9d\x7c\xac\x95\x8f\xd4\xe4\x87\xf7\x0f\x5d\x27\x62\x4e\xab\x98\xd4\x53\x8d\x20\x8a\x3a\x38\x8f\x9c\x53\x39\xa4\xf9\x67\x8b\x11\x7e\x05\xce\x33\xe9\x2a\x03\x28\x71\xad\x42\xed\x13\xda\xfd\x90\xf0\xf0\xf6\x08\x8a\xb4\xf3\x4a\x17\x98\x17\x26\xe8\xc4\x62\x9e\xfb\x97\xe1\x2d\xb2\xbc\x8f\xef\x4f\xa7\x6f\x8c\xf3\x5a\x35\xf8\x92\x50\x4d\xce\xbf\x1a\x58\xbd\x9e\x41\x1f\x90\x7f\x4b\xa9\x5d\x77\x02\x9b\xec\x15\xa8\x0f\x8f\x27\xf1\x0a\x1b\xae\x00\xbc\x7f\xfc\x70\x12\x91\x55\x73\x05\xe2\xfb\x5f\xde\x9d\x44\x2c\xc9\x6d\xaf\x80\x7c\x4b\x6e\x7b\x5a\xc7\x4a\x5f\x01\xf9\xab\x31\xfe\xde\xe8\x35\x55\x03\x30\x63\xb2\xff\x68\xdd\xbc\x35\x75\x88\x2b\x2f\xc6\x87\x58\x23\xae\x68\x5f\x42\x7c\xbd\x6b\x15\xcb\x83\x67\xbb\xdb\x14\x97\x01\x58\x63\xea\x53\x51\xf1\x5d\x8c\x39\x74\xdb\xb4\x2f\x7e\xff\xe3\xa1\x51\x15\x26\x47\x9e\x21\x75\x50\xb2\xb7\x38\x4c\x3e\x2b\x88\x35\xe7\x2d\x70\xa0\x3e\x8d\x4b\xf4\x8e\xec\xfe\xb1\xcf\x91\xa4\x4b\xfc\xe7\x53\x77\xdb\xd7\xca\x00\x9e\x94\xc3\xc4\x20\xef\xd1\x2e\x93\x61\xa1\xe2\xa2\x20\xf4\xef\x4b\x7e\x33\x72\x91\xc5\x8c\x18\xdc\xc0\x77\x77\xdf\xbf\x99\xff\x2c\xcb\x46\x95\x26\x4f\x46\x0b\x10\x87\xc7\xa9\x78\xff\xa3\xd9\xc5\x52\xed\xd1\x27\xd3\x3f\x3b\xeb\xc2\x68\x8f\x3a\x7a\xd3\x63\x63\x6b\xe5\x71\x4d\x35\xbe\x9a\xd5\xa2\x4a\xcf\xca\x7c\x03\x3b\x18\xeb\xbf\x64\xbe\xc8\x0b\xba\xd7\xcb\xba\x94\xa6\x51\x14\x55\xd1\xe8\xbc\x71\xcb\x86\xba\xd0\x4f\x97\x10\x89\xe8\x36\xa4\x13\xa7\x31\x65\x6f\xa1\x18\x79\x6b\x95\x73\x7e\xc3\x26\x54\x1b\x91\x0d\x47\x4a\x1b\x43\xcf\xf0\xb0\xe1\x25\x76\x83\x8d\xe1\xe7\x93\x19\xac\x9a\x23\x36\x86\xd1\xb8\xbd\x3f\xfa\xbd\x63\x6e\x19\xb9\x7f\xb8\x91\x54\x1e\x55\x54\xc5\x86\x34\x4e\x1d\xbe\xdb\xc9\x77\xc3\xe8\x9f\xcf\xb6\xef\x64\x00\x15\xbc\x71\x5e\xb1\xdf\x87\x79\x0e\x38\xd9\xb3\x26\xf9\xdb\xb6\x11\x59\xdc\xb5\xc8\x6d\x93\x52\xa9\xe7\xa8\x9c\xf0\x1b\xc6\x64\x8c\x5a\x64\xd6\x45\x0c\x8d\xfe\xb3\xe1\x6d\x4e\xda\x23\xaf\x55\x81\x09\x70\x1c\x3f\xb7\x9d\x69\x4c\xc7\xfe\xde\x6a\x5f\xb4\xce\x00\xaa\x2c\x19\x9d\x43\xb7\x98\x47\x76\x6e\xd1\xaf\x56\x20\x74\xa8\x6b\x01\x3f\xc3\xc7\x73\x91\x9f\xe0\x27\x88\x81\x7d\x8d\xcf\x8a\x7c\xbe\x36\x9c\xd7\xa8\x1c\x1e\x74\xed\x67\x5f\xb1\xb2\x1b\x2a\xc6\x1b\xcf\x54\xeb\x15\x88\x56\x17\x22\xdd\x84\x9c\x47\x9d\xf7\xaf\x57\x20\x12\x6d\x31\xa2\x14\x46\x3b\x53\xe3\x32\x88\xf5\xcf\x03\x88\x57\x5c\xa1\xcf\xad\xe9\xaf\x54\xe2\x4e\x8c\x77\x22\x13\xbc\x0d\x1e\x04\xd9\xf6\xcd\xd0\x5f\xad\xaa\x03\x4e\x56\x72\x68\x42\x39\xb4\xa0\xbc\x91\x47\x8b\x26\xef\xe4\x5e\xcb\xac\xfb\x2f\x00\x00\xff\xff\x56\x79\xfb\xa1\xe0\x09\x00\x00"), }, "/terraform/nestos/openstack": &vfsgen۰DirInfo{ name: "openstack", - modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), }, "/terraform/nestos/openstack/master.tf.template": &vfsgen۰CompressedFileInfo{ name: "master.tf.template", - modTime: time.Date(2024, 5, 21, 1, 32, 20, 949861195, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 4739, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x58\x6d\x6f\xdb\x36\x10\xfe\xae\x5f\x71\x13\xf6\xa1\x2d\x16\xd5\x2f\x79\xdb\x80\x60\xc8\xd2\x61\x0b\xb0\x16\x41\xb0\x7c\x59\x31\x08\x8c\x74\x72\x08\x53\x22\xc7\x17\x35\xad\xe1\xff\x3e\x50\xa4\x64\x4b\x96\x6c\xc7\x49\x80\xa2\x28\x40\x1d\xef\x9e\xe7\xee\xc8\xe3\x9d\xa3\x51\x4a\x92\x71\x99\xc3\x22\x00\x90\xf8\x9f\xa1\x12\xd3\x58\x48\x5e\xd2\x14\xa5\xaa\xc4\x00\x5c\x60\xa1\x34\x49\xe6\x70\xe1\x25\x00\x8a\x1b\x99\x20\x5c\x40\xd8\x80\x1c\xd5\x76\x47\x8d\xc1\xfb\x66\x15\x7a\xbb\x12\xa5\xa2\xbc\xb0\x86\xe3\xe8\x64\x12\x8d\xdd\xc6\x32\xb0\xff\x97\x41\x50\x63\x40\xb8\x32\xad\x48\x8d\x42\x19\x17\x24\x47\x00\x6b\xbc\x58\x44\x37\x8c\x68\xcb\x1b\xdd\x29\x94\x76\x67\xb9\xb4\x60\x82\x28\xf5\x85\xcb\x14\x36\x15\x6f\xfc\x96\x53\xd4\x58\x90\x42\x3b\xcc\x8e\xe2\xdf\xd5\xd6\xa7\x06\x93\x18\xfd\x10\x1b\xc9\x7a\x30\x2f\x8d\x7e\xb8\xbb\xfd\xcb\xe9\x49\x9c\xd9\xe0\xa0\x47\xef\xb6\xda\xb2\x6a\xcb\x20\x28\x89\xa4\xe4\x9e\x21\x84\x09\x33\x4a\xa3\x8c\x69\xea\xc2\xd4\x5f\x05\x3a\x6b\xa5\x25\x2d\x66\x01\x40\x8a\x19\x31\x4c\x7b\xc0\x2b\x67\x70\xfd\x61\x03\x8a\xda\x74\x15\x09\xc6\x09\x37\x85\xde\x13\xee\x23\xb1\x68\xd1\x95\x35\x19\x46\x7c\xe0\x4a\xdb\x3c\x75\x41\x19\x55\xfa\x8d\x43\x7e\xdb\x82\x5e\x21\xff\xe9\x4d\x97\xcb\x21\x6f\x85\x39\x00\xf6\xea\xe6\x6e\x10\x51\x92\xfc\x00\xc4\xdb\xcb\x8f\x83\x88\x29\x55\xf3\x03\x20\x3f\x50\x35\x1f\xc4\xe4\x8a\xe6\x64\x86\x7b\x9e\x53\x73\x8f\xfe\x60\xd6\xba\xbe\x9a\x2d\x68\x52\x12\xca\xc8\x3d\x65\x54\x7f\x8d\xbf\xf1\xe2\xc9\xd8\x97\x6b\x00\xff\xf0\x02\x87\x2f\x84\xad\xc6\x94\x68\x72\x40\x52\x7e\xe3\x5c\x5f\xf1\x22\xa3\xb3\xcd\xd4\x68\x5b\xc8\x2c\x2e\x50\x3f\xd5\xf5\x6b\x6f\xfb\x09\xf5\x17\x2e\xe7\xc3\x9e\x53\x71\x80\xcf\xd7\x37\x5d\x5f\xf1\xf1\x70\x5f\x7f\x7f\xec\xf3\x55\xa2\x7f\x53\x57\x2f\x5f\x9c\xf0\x5c\x18\x8d\x71\xc6\x48\xc9\x65\x5c\x4e\x42\x08\xdd\xda\x71\x56\x95\xee\x5f\x9b\x92\xc8\xa8\xfd\x04\x04\x00\xfe\xc1\xdc\x54\xa8\x2b\xfa\x73\xa5\x19\xd1\x22\xc5\xc7\x7f\x03\x80\x32\x11\x46\xf5\x22\x0a\xd3\xd5\x95\x24\x87\x5e\x70\x49\xf2\xae\xae\xad\xa0\x5e\x5d\xbb\xd1\x55\xa6\x2a\x16\xe6\x9e\xd1\xa4\xea\x2f\xd2\xe0\x60\x82\xee\x19\x4f\xe6\x4a\x73\x49\x66\x18\x97\x9c\x99\x1c\xe3\x72\x1a\x42\xe8\xd6\xeb\x59\xda\x9a\xa1\x3d\xb3\xa3\xe8\x37\xdc\x23\x82\x1d\xa7\xa9\x30\x99\x49\x6e\x84\x3b\xcf\xfa\xcb\xf9\xba\x3a\xb0\xaa\x83\xfc\xb8\xb0\x54\xab\x26\xb1\x3c\xca\xab\x1b\x19\x56\xb7\x4b\x25\x92\x0a\xed\xdb\x69\x8d\x03\x19\x97\x30\x3f\x57\x50\x6b\xda\x93\x32\x0c\x7d\xeb\xce\x24\xcf\x63\xc1\xa5\xae\x08\x26\x93\x4a\xa8\x79\x2d\x5a\x13\x52\x61\x27\x01\xcd\x13\xce\xaa\x73\x48\x84\xeb\xd5\x09\x4d\xe5\x9a\x8b\xa3\xa8\xfa\xf7\x7e\x14\x56\x3d\x7c\x1b\xdb\xd1\xb8\x87\xcd\x0b\x3b\x6c\x34\xc9\x9f\x4d\x77\x3e\xea\xa1\xf3\xc2\x97\x0f\xee\xf8\x78\xda\x43\x57\x4b\x5f\x9e\x6f\x32\x3d\xfb\xb9\xef\xf0\xa6\xaf\x16\xe1\xb8\x97\xb0\x96\xbe\x3c\xdf\x69\x7f\x4a\x4f\x5f\x2f\xa7\xe3\xd1\xe4\xf8\xbc\x2f\xc6\x46\xfe\x2a\x9c\x27\xa3\x7e\xce\x93\xd7\x3a\xc9\xe9\x68\x34\xea\xe3\x9c\x4e\xce\x4e\xcf\xbe\x17\x4e\x93\xee\xc5\xb9\xe3\xb1\x6d\x9e\xe9\xea\xb1\xad\xbf\xba\xed\x13\xa0\xbf\x93\x6d\xf6\xd1\x21\xcd\xa1\x96\x51\x0d\x79\x71\xcb\xbe\x63\xe9\x07\xc1\x00\xc0\xb7\xf9\x76\x0f\xd8\xaf\x31\x61\x62\xa4\x1d\xfb\xaa\x16\xa0\x9c\xe5\xe7\xad\xad\x27\xaa\xd7\x91\x05\xb4\x20\x1b\xf3\x63\x4d\xbf\xb1\x51\xff\x1e\xb3\x23\xe0\x7a\x46\x34\xe6\x82\x11\x8d\x19\x65\xf8\xa6\xe5\x78\x3d\x30\xb6\x1c\xff\x09\x16\x50\x47\xb4\x57\xa4\xb0\x7c\x6b\xef\x58\xe1\x06\x27\x7f\xcd\xfa\xd2\xb5\x1a\xce\xdc\x4d\xa4\x8f\x98\xc6\x54\xc4\xe5\x71\x97\x87\x8a\x36\xc3\x0f\x17\x10\x16\x86\xb1\x10\x7e\xdd\xae\xf8\x0b\x58\xb5\x6d\x57\xd0\xbb\x49\x8b\x59\x9c\x31\x4e\x34\x2d\x66\x54\xd4\x43\x9c\xfd\x16\x7b\xcc\x27\x82\x73\x56\xc7\xb5\x3e\x74\xee\x1e\x19\x1b\x46\xa2\x14\x4f\x28\xd1\xbe\x06\xb2\x75\xd1\x66\x21\x0c\xf8\x51\xe3\xc5\x54\xc0\x05\xec\x0e\x32\xf2\x21\x46\xef\x22\x92\xa6\x12\x95\xda\xa8\x8c\x26\xb3\x69\x0b\xb1\xa7\x72\x1b\x77\xa2\x77\x11\x4d\x9f\x34\x6c\xf9\xa1\x90\x68\x4d\x92\x07\x97\x80\x96\x68\xef\x04\xbc\x90\xbb\x00\x9e\x9e\xa6\x15\xd7\xae\x59\x36\x72\xab\xfe\xc0\xb9\xd1\xc2\xe8\xf5\x5f\x37\x45\xc6\x5d\x44\x25\x61\x06\x9b\x3f\xd8\x34\x15\xd1\x39\xbd\x1d\xce\xfb\xc3\x8d\x46\xd1\x5a\x05\xb9\x8a\x7a\xf6\x75\x70\x95\xf3\x7f\x00\x00\x00\xff\xff\xb5\xf7\x6b\xd0\x83\x12\x00\x00"), }, "/terraform/nestos/openstack/worker.tf.template": &vfsgen۰CompressedFileInfo{ name: "worker.tf.template", - modTime: time.Date(2024, 5, 21, 1, 33, 46, 760008493, time.UTC), + modTime: time.Date(2024, 5, 23, 9, 3, 39, 206082831, time.UTC), uncompressedSize: 4720, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x58\x6d\x6b\xe4\x36\x10\xfe\xee\x5f\x31\x35\xfd\x70\x77\x34\xbe\x7d\xc9\x5b\x0b\xa1\xa4\xb9\xd2\x06\xda\x23\x84\x86\x42\x8f\x62\x14\x7b\xbc\x11\x2b\x5b\xaa\x5e\x9c\xdc\x2d\xfb\xdf\x8b\x2c\xd9\xbb\xf6\xda\xbb\x9b\xbd\x04\x8e\xe3\x40\x1e\xcd\x3c\xcf\xcc\x48\xa3\x99\x8d\x46\x29\x49\xc6\x65\x0e\x8b\x00\x40\xe2\x7f\x86\x4a\x4c\x63\x21\x79\x49\x53\x94\xaa\x12\x03\x70\x81\x85\xd2\x24\x99\xc3\x85\x97\x00\x28\x6e\x64\x82\x70\x01\x61\x03\x72\x54\xdb\x1d\x35\x06\xef\x9b\x55\xe8\xed\x4a\x94\x8a\xf2\xc2\x1a\x8e\xa3\x93\x49\x34\x76\x1b\xcb\xc0\xfe\x5f\x06\x41\x8d\x01\xe1\xca\xb4\x22\x35\x0a\x65\x5c\x90\x1c\x01\xac\xf1\x62\x11\xdd\x30\xa2\x2d\x6f\x74\xa7\x50\xda\x9d\xe5\xd2\x82\x09\xa2\xd4\x23\x97\x29\x6c\x2a\xde\xf8\x2d\xa7\xa8\xb1\x20\x85\x76\x98\x1d\xc5\xbf\xaa\xad\x8f\x0d\x26\x31\xfa\x21\x36\x92\xf5\x60\x5e\x1a\xfd\x70\x77\xfb\x87\xd3\x93\x38\xb3\xc1\x41\x8f\xde\x6d\xb5\x65\xd5\x96\x41\x50\x12\x49\xc9\x3d\x43\x08\x13\x66\x94\x46\x19\xd3\xd4\x85\xa9\x3f\x0b\x74\xd6\x4a\x4b\x5a\xcc\x02\x80\x14\x33\x62\x98\xf6\x80\x57\xce\xe0\xfa\xc3\x06\x14\xb5\xe9\x2a\x12\x8c\x13\x6e\x0a\xed\xe0\xda\xb6\x7f\x73\x39\x47\x19\x5d\xd9\xfd\x61\xf3\x07\xae\xb4\x4d\x4a\xd7\x21\x46\x95\x7e\xe3\xbc\x7a\xdb\x82\x5e\x21\xff\xee\x4d\x97\xcb\x21\xd7\x84\x39\x00\xf6\xea\xe6\x6e\x10\x51\x92\xfc\x00\xc4\xdb\xcb\x3f\x07\x11\x53\xaa\xe6\x07\x40\x7e\xa0\x6a\x3e\x88\xc9\x15\xcd\xc9\x0c\xf7\x3c\xe3\xe6\xd2\xfc\xc6\xac\x75\x7d\x0f\x5b\xd0\xa4\x24\x94\x91\x7b\xca\xa8\xfe\x1c\x7f\xe1\xc5\xb3\xb1\x2f\xd7\x00\xfe\xe1\x05\x0e\x5f\x08\x5b\x7a\x29\xd1\xe4\x80\xa4\xfc\xc2\xb9\xbe\xe2\x45\x46\x67\x9b\xa9\xd1\xb6\x6a\x59\x5c\xa0\x7e\xae\xeb\xd7\xde\xf6\x23\xea\x47\x2e\xe7\xc3\x9e\x53\x71\x80\xcf\xd7\x37\x5d\x5f\xf1\xe9\x70\x5f\x7f\x7d\xea\xf3\x55\xa2\x7f\x40\x57\xcf\x5c\x9c\xf0\x5c\x18\x8d\x71\xc6\x48\xc9\x65\x5c\x4e\x42\x08\xdd\xda\x71\x56\x65\xed\x9f\x96\x92\xc8\xa8\x5d\xef\x01\x80\x7f\x1d\x37\x15\xea\x8a\xfe\x54\x69\x46\xb4\x48\xf1\xe9\xdf\x00\xa0\x4c\x84\x51\xbd\x88\xc2\x74\x75\x25\xc9\xa1\x17\x5c\x92\xbc\xab\x6b\x2b\xa8\x57\xd7\x6e\x74\x95\xa9\x8a\x85\xb9\x67\x34\xa9\x9a\x89\x34\x38\x98\xa0\x7b\xc6\x93\xb9\xd2\x5c\x92\x19\xc6\x25\x67\x26\xc7\xb8\x9c\x86\x10\xba\xf5\x7a\x96\xb6\x66\x68\xcf\xec\x28\xfa\x05\xf7\x88\x60\xc7\x69\x2a\x4c\x66\x92\x1b\xe1\xce\xb3\xfe\x72\xbe\xae\x0e\xac\x6a\x17\xdf\x2f\x2c\xd5\xaa\x23\x2c\x8f\x1e\xab\x1b\x19\x56\xb7\x4b\x25\x92\x0a\xed\x7b\x67\x8d\x03\x19\x97\x30\x3f\x57\x50\x6b\xda\x93\x32\x0c\x7d\x9f\xce\x24\xcf\x63\xc1\xa5\xae\x08\x26\x93\x4a\xa8\x79\x2d\x5a\x13\x52\x61\xdb\xbe\xe6\x09\x67\xd5\x39\x24\xc2\x35\xe6\x84\xa6\x72\xcd\xc5\x51\x54\xfd\x7b\x3f\x0a\xab\x86\xbd\x8d\xed\x68\xdc\xc3\xe6\x85\x1d\x36\x9a\xe4\x5f\x4d\x77\x3e\xea\xa1\xf3\xc2\x97\x0f\xee\xf8\x78\xda\x43\x57\x4b\x5f\x9e\x6f\x32\x3d\xfb\xb1\xef\xf0\xa6\xaf\x16\xe1\xb8\x97\xb0\x96\xbe\x3c\xdf\x69\x7f\x4a\x4f\x5f\x2f\xa7\xe3\xd1\xe4\xf8\xbc\x2f\xc6\x46\xfe\x2a\x9c\x27\xa3\x7e\xce\x93\xd7\x3a\xc9\xe9\x68\x34\xea\xe3\x9c\x4e\xce\x4e\xcf\xbe\x15\x4e\x93\xee\xc5\xb9\xe3\xb1\x6d\x9e\xe9\xea\xb1\xad\xbf\xba\xed\x13\xa0\xbf\x93\x6d\xf6\xd1\x21\xcd\xa1\x96\x51\x0d\x79\x71\xcb\xbe\x63\xe9\x07\xc1\x00\xc0\xb7\xf9\x76\x0f\xd8\xaf\x31\x61\x62\xa4\x1d\xfb\xaa\x16\xa0\x9c\xe5\xa7\xad\xad\x27\xaa\xd7\x91\x05\xb4\x20\x1b\xf3\x63\x4d\xbf\xb1\x51\xff\xf8\xb2\x23\xe0\x7a\x46\x34\xe6\x82\x11\x8d\x19\x65\xf8\xa6\xe5\x78\x3d\x30\xb6\x1c\xff\x01\x16\x50\x47\xb4\x57\xa4\xb0\x7c\x6b\xef\x58\xe1\x06\x27\x7f\xcd\xfa\xd2\xb5\x1a\xce\xdc\x4d\xa4\x4f\x98\xc6\x54\xc4\xe5\x71\x97\x87\x8a\x36\xc3\x77\x17\x10\x16\x86\xb1\x10\x7e\xde\xae\xf8\x13\x58\xb5\x6d\x57\xd0\xbb\x49\x8b\x59\x9c\x31\x4e\x34\x2d\x66\x54\xd4\x43\x9c\xfd\x16\x7b\xcc\x27\x82\x73\x56\xc7\xb5\x3e\x74\xee\x1e\x19\x1b\x46\xa2\x14\x4f\x28\xd1\xbe\x06\xb2\x75\xd1\x66\x21\x0c\xf8\x51\xe3\xc5\x54\xc0\x05\xec\x0e\x32\xf2\x21\x46\xef\x22\x92\xa6\x12\x95\xda\xa8\x8c\x26\xb3\x69\x0b\xb1\xa7\x72\x1b\x77\xa2\x77\x11\x4d\x9f\x35\x6c\xf9\xa1\x90\x68\x4d\x92\x07\x97\x80\x96\x68\xef\x04\xbc\x90\xbb\x00\x9e\x9e\xa6\x15\xd7\xae\x59\x36\x72\xab\xfe\xc0\xb9\xd1\xc2\xe8\xf5\x5f\x37\x45\xc6\x5d\x44\x25\x61\x06\x9b\xbf\xce\x34\x15\xd1\x39\xbd\x1d\xce\xfb\xc3\x8d\x46\xd1\x5a\x05\xb9\x8a\xfa\xea\xeb\xe0\x2a\xe7\xff\x00\x00\x00\xff\xff\x9d\xd0\xe6\x25\x70\x12\x00\x00"), diff --git a/data/data/bootconfig/files/etc/nkdfiles/node-pivot.sh.template b/data/data/bootconfig/files/etc/nkdfiles/node-pivot.sh.template index 1e12ed1..1cbc031 100644 --- a/data/data/bootconfig/files/etc/nkdfiles/node-pivot.sh.template +++ b/data/data/bootconfig/files/etc/nkdfiles/node-pivot.sh.template @@ -9,6 +9,7 @@ image_registry="{{.ImageRegistry}}" pause_image="{{.PauseImage}}" release_image_url="{{.ReleaseImageURl}}" certs_url="{{.CertsUrl}}" +package_list=({{range .PackageList}}"{{.}}" {{end}}) # Function to manage services manage_service() { @@ -104,6 +105,45 @@ configure_crio_runtime() { fi } +# Function to configure CRI-O runtime +configure_containerd_runtime() { + containerd config default > /etc/containerd/config.toml + sandbox_image="$image_registry/$pause_image" + + if sed -i "s#^\(\s*sandbox_image\s*=\s*\).*\$#\1\"$sandbox_image\"#" /etc/containerd/config.toml; then + echo "sandbox_image field in /etc/containerd/config.toml updated successfully." + else + echo "Failed to update sandbox_image field in /etc/containerd/config.toml." + fi + + if systemctl restart containerd; then + echo "Successfully restarted containerd" + else + echo "Failed to restart containerd" + exit 1 + fi +} + +# Function to create crictl configuration file +create_crictl_config() { + local config_file="/etc/crictl.yaml" + + # Create configuration file + cat < "$config_file" +runtime-endpoint: "unix:///run/containerd/containerd.sock" +image-endpoint: "unix:///run/containerd/containerd.sock" +timeout: 0 +debug: false +EOF + + # Check if configuration file is created successfully + if [ -f "$config_file" ]; then + echo "crictl configuration file created successfully at $config_file." + else + echo "Failed to create crictl configuration file at $config_file." + fi +} + # Function to perform OSTree rebase perform_rebase() { local url="$1" @@ -139,28 +179,97 @@ fetch_and_save_certificates() { done < <(echo "$response" | jq -r '.[] | "\(.Path) \(.Content)"') } -install_kubernetes_packages() { - sudo yum install -y kubernetes-client kubernetes-kubelet kubernetes-kubeadm conntrack cri-tools socat containernetworking-plugins iptables jq +# Function to define the installer packages based on the environment +define_installer_packages() { + local packages=( + conntrack-tools + cri-tools + socat + containernetworking-plugins + iptables + jq + ) {{if .IsDocker -}} - sudo yum install -y docker + packages+=(docker-engine) {{end -}} - {{if .IsIsulad -}} - sudo yum install -y iSulad + packages+=(iSulad) {{end -}} - {{if .IsCrio -}} - sudo yum install -y crio + packages+=(cri-o) {{end -}} + echo "${packages[@]}" } -check_installation_status() { - if rpm -qa | grep -E 'kubernetes-client|kubernetes-kubelet|kubernetes-kubeadm|conntrack|cri-tools|socat|containernetworking-plugins|iptables|jq'; then - echo "Kubernetes packages installed successfully." +# Function to install dependent packages +install_dependent_packages() { + local packages + if [[ ${#package_list[@]} -ne 0 && "${package_list[0]}" != "" ]]; then + echo "Using configured package list:" + packages=("${package_list[@]}") else - echo "Error: Kubernetes packages installation failed." - exit 1 + echo "Using default package list:" + packages=($(define_installer_packages)) + {{if .IsContainerd -}} + packages+=(containerd) + {{end -}} + fi + echo "${packages[@]}" + sudo yum install -y "${packages[@]}" > /dev/null 2>&1 +} + +# Function to get the check packages, either from the package_list or the default list +get_check_packages() { + local check_packages + if [[ ${#package_list[@]} -ne 0 && "${package_list[0]}" != "" ]]; then + check_packages=("${package_list[@]}") + # Replace containerd with containerd.io for checking + for i in "${!check_packages[@]}"; do + if [[ "${check_packages[i]}" == "containerd" ]]; then + check_packages[i]="containerd.io" + fi + done + else + check_packages=($(define_installer_packages)) + {{if .IsContainerd -}} + check_packages+=(containerd.io) + {{end -}} fi + echo "${check_packages[@]}" +} + +check_installation_status() { + local check_packages + check_packages=($(get_check_packages)) + # Check if all packages are installed + for package in "${check_packages[@]}"; do + if ! rpm -q "$package" &> /dev/null; then + echo "Error: Package $package is not installed." + exit 1 + fi + done + + echo "Kubernetes dependent packages installed successfully." +} + +check_and_install_kube_binaries() { + local binaries=( + "kubeadm" + "kubelet" + "kubectl" + ) + for binary in "${binaries[@]}"; do + if ! command -v "$(basename "$binary")" &>/dev/null; then + echo "$binary is missing, installing it using yum." + sudo yum install -y /usr/bin/"$binary" > /dev/null 2>&1 + if [ $? -ne 0 ]; then + echo "Failed to install $binary. Exiting." + exit 1 + else + echo "$(basename "$binary") installed successfully." + fi + fi + done } # Function to disable swap @@ -194,32 +303,38 @@ disable_selinux() { echo "SELinux disabled successfully." } +# Execute hook files +execute_hookfiles "${hook_files_path}" + # Call the function to disable firewall disable_firewall -{{if .IsOpeneuler -}} - install_kubernetes_packages - echo "Checking installation status..." - check_installation_status - {{if .IsControlPlane -}} - fetch_and_save_certificates - {{end -}} - - systemctl enable kubelet.service - systemctl restart set-kernel-para.service +{{if or .IsGeneralOS -}} +install_dependent_packages +echo "Checking installation status..." +check_installation_status +check_and_install_kube_binaries +{{if .IsControlPlane -}} +fetch_and_save_certificates {{end -}} -# Execute hook files -execute_hookfiles "${hook_files_path}" +systemctl enable kubelet.service +systemctl restart set-kernel-para.service +{{end -}} # Start necessary services check_and_start_service "${runtime}" -# Configure CRI-O runtime {{if .IsCrio -}} +# Configure CRI-O runtime configure_crio_runtime {{end -}} +{{if .IsContainerd}} +configure_containerd_runtime +create_crictl_config +{{end -}} + # Call the function to disable swap disable_swap diff --git a/data/data/bootconfig/kickstart.cfg.template b/data/data/bootconfig/kickstart.cfg.template index 7b663e9..257b7dc 100644 --- a/data/data/bootconfig/kickstart.cfg.template +++ b/data/data/bootconfig/kickstart.cfg.template @@ -30,7 +30,7 @@ timezone Asia/Shanghai --utc %end %post --log=/var/log/ks-post.log -mkdir -p /etc/nkdfiles +mkdir -p /etc/nkdfiles/hookfiles/ {{if .IsDocker -}} mkdir -p /etc/docker diff --git a/pkg/configmanager/asset/clusterasset.go b/pkg/configmanager/asset/clusterasset.go index 850ad0c..ad51192 100644 --- a/pkg/configmanager/asset/clusterasset.go +++ b/pkg/configmanager/asset/clusterasset.go @@ -195,21 +195,21 @@ type ShellFile struct { type OSImage struct { Type string IsNestOS bool `json:"isNestOS" yaml:"-"` - IsOpeneuler bool `json:"isopenEuler" yaml:"-"` + IsGeneralOS bool `json:"isGeneralOS" yaml:"-"` } type Kubernetes struct { KubernetesVersion string `yaml:"kubernetesVersion"` KubernetesAPIVersion string `yaml:"kubernetesApiVersion"` - ApiServerEndpoint string `yaml:"apiServerEndpoint"` + ApiServerEndpoint string `yaml:"apiserverEndpoint"` ImageRegistry string `yaml:"imageRegistry"` PauseImage string `yaml:"pauseImage"` ReleaseImageURL string `yaml:"releaseImageURL"` Token string - AdminKubeConfig string `yaml:"adminKubeConfig"` - CertificateKey string `yaml:"certificateKey"` - CaCertHash string `json:"-" yaml:"-"` - + AdminKubeConfig string `yaml:"adminKubeConfig"` + CertificateKey string `yaml:"certificateKey"` + CaCertHash string `json:"-" yaml:"-"` + PackageList []string `json:"packageList" yaml:"packageList,omitempty"` Network } diff --git a/pkg/configmanager/asset/infraasset/libvirtasset.go b/pkg/configmanager/asset/infraasset/libvirtasset.go index ba81276..8e93d8c 100644 --- a/pkg/configmanager/asset/infraasset/libvirtasset.go +++ b/pkg/configmanager/asset/infraasset/libvirtasset.go @@ -23,7 +23,7 @@ import ( type LibvirtAsset struct { URI string - OSImage string `yaml:"osImage"` + OSPath string `yaml:"osPath"` CIDR string Gateway string } @@ -32,8 +32,8 @@ func (la *LibvirtAsset) InitAsset(libvirtMap map[string]interface{}, opts *opts. updateFieldFromMap("uri", &la.URI, libvirtMap) asset.SetStringValue(&la.URI, opts.InfraPlatform.Libvirt.URI, "qemu:///system") - updateFieldFromMap("osImage", &la.OSImage, libvirtMap) - if err := asset.CheckStringValue(&la.OSImage, opts.InfraPlatform.Libvirt.OSImage, "os-image"); err != nil { + updateFieldFromMap("osPath", &la.OSPath, libvirtMap) + if err := asset.CheckStringValue(&la.OSPath, opts.InfraPlatform.Libvirt.OSPath, "os-path"); err != nil { return nil, err } diff --git a/pkg/configmanager/runtime/contained.go b/pkg/configmanager/runtime/contained.go new file mode 100644 index 0000000..268a048 --- /dev/null +++ b/pkg/configmanager/runtime/contained.go @@ -0,0 +1,32 @@ +/* +Copyright 2024 KylinSoft Co., Ltd. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ +package runtime + +import ( + "nestos-kubernetes-deployer/pkg/api" +) + +type containerdRuntime struct { +} + +func (ir *containerdRuntime) GetRuntimeCriSocket() string { + return "unix:///var/run/containerd/containerd.sock" +} + +func IsContainerd(rt api.Runtime) bool { + _, ok := rt.(*containerdRuntime) + return ok +} diff --git a/pkg/configmanager/runtime/runtime.go b/pkg/configmanager/runtime/runtime.go index 39917fc..869b2fe 100644 --- a/pkg/configmanager/runtime/runtime.go +++ b/pkg/configmanager/runtime/runtime.go @@ -26,9 +26,10 @@ import ( var ( mapRuntime = map[string]api.Runtime{ - constants.Isulad: &isuladRuntime{}, - constants.Docker: &dockerRuntime{}, - constants.Crio: &crioRuntime{}, + constants.Isulad: &isuladRuntime{}, + constants.Docker: &dockerRuntime{}, + constants.Crio: &crioRuntime{}, + constants.Containerd: &containerdRuntime{}, } ) diff --git a/pkg/constants/constants.go b/pkg/constants/constants.go index 56e80e7..2d95efe 100644 --- a/pkg/constants/constants.go +++ b/pkg/constants/constants.go @@ -24,9 +24,10 @@ const ( Worker = "worker" // 容器运行类型标识符 - Isulad = "isulad" - Docker = "docker" - Crio = "crio" + Isulad = "isulad" + Docker = "docker" + Crio = "crio" + Containerd = "containerd" // 操作系统引导文件存储文件夹 BootConfigSaveDir = "bootconfig" diff --git a/pkg/osmanager/bootconfig/cloudinit/template.go b/pkg/osmanager/bootconfig/cloudinit/template.go index 93f470d..ba42c0c 100644 --- a/pkg/osmanager/bootconfig/cloudinit/template.go +++ b/pkg/osmanager/bootconfig/cloudinit/template.go @@ -18,6 +18,7 @@ package cloudinit import ( "encoding/base64" "fmt" + "io/fs" "nestos-kubernetes-deployer/pkg/configmanager/asset" "nestos-kubernetes-deployer/pkg/configmanager/runtime" "nestos-kubernetes-deployer/pkg/constants" @@ -106,6 +107,19 @@ func (t *template) GenerateBootConfig(url string, nodeType string) error { } t.config.WriteFiles = append(t.config.WriteFiles, cf) } + + if len(t.clusterAsset.HookConf.ShellFiles) > 0 { + for _, sf := range t.clusterAsset.HookConf.ShellFiles { + wf := WriteFile{ + EnCoding: "b64", + Content: base64.StdEncoding.EncodeToString(sf.Content), + Path: constants.HookFilesPath + sf.Name, + Permissions: fs.FileMode(sf.Mode), + } + t.config.WriteFiles = append(t.config.WriteFiles, wf) + } + } + for _, u := range bootConfigSystemd.Units { cf := WriteFile{ Content: u.Contents, diff --git a/pkg/osmanager/bootconfig/kickstart/template.go b/pkg/osmanager/bootconfig/kickstart/template.go index 6a5c4c3..fa34bba 100644 --- a/pkg/osmanager/bootconfig/kickstart/template.go +++ b/pkg/osmanager/bootconfig/kickstart/template.go @@ -86,6 +86,16 @@ func (t *template) GenerateBootConfig(url string, nodeType string) error { }) } + if len(t.clusterAsset.HookConf.ShellFiles) > 0 { + for _, sf := range t.clusterAsset.HookConf.ShellFiles { + hookFilePath := constants.HookFilesPath + sf.Name + ksData.Files = append(ksData.Files, File{ + Content: fmt.Sprintf("cat <<'EOF'> %s\n%s\nEOF", hookFilePath, string(sf.Content)), + ChangeMod: fmt.Sprintf("chmod %o %s", sf.Mode, hookFilePath), + }) + } + } + for _, u := range systemds.Units { fp := fmt.Sprintf("/etc/systemd/system/%s", u.Name) ksData.Files = append(ksData.Files, File{ diff --git a/pkg/osmanager/bootconfig/tools.go b/pkg/osmanager/bootconfig/tools.go index 13125d0..8650c82 100644 --- a/pkg/osmanager/bootconfig/tools.go +++ b/pkg/osmanager/bootconfig/tools.go @@ -56,8 +56,10 @@ type TmplData struct { IsDocker bool IsIsulad bool IsCrio bool + IsContainerd bool IsNestOS bool - IsOpeneuler bool + IsGeneralOS bool + PackageList []string } func GetTmplData(c *asset.ClusterAsset) (*TmplData, error) { @@ -89,8 +91,10 @@ func GetTmplData(c *asset.ClusterAsset) (*TmplData, error) { IsDocker: runtime.IsDocker(engine), IsIsulad: runtime.IsIsulad(engine), IsCrio: runtime.IsCrio(engine), + IsContainerd: runtime.IsContainerd(engine), IsNestOS: c.IsNestOS, - IsOpeneuler: c.IsOpeneuler, + IsGeneralOS: c.IsGeneralOS, + PackageList: c.PackageList, }, nil } diff --git a/pkg/osmanager/osmanager.go b/pkg/osmanager/osmanager.go index 3e4e113..cd56154 100644 --- a/pkg/osmanager/osmanager.go +++ b/pkg/osmanager/osmanager.go @@ -9,8 +9,8 @@ import ( ) const ( - nestosType = "nestos" - eulerType = "openeuler" + nestosType = "nestos" + generalosType = "generalos" ) type osmanager struct { @@ -33,7 +33,7 @@ func (o *osmanager) GenerateOSConfig() error { return fmt.Errorf("error generating NestOS resource files: %v", err) } return nil - } else if o.IsOpenEuler() { + } else if o.IsGeneralOS() { osDep, err := generalos.NewGeneralOS(o.config) if err != nil { return fmt.Errorf("error creating GeneralOS osmanager instance: %v", err) @@ -54,9 +54,9 @@ func (o *osmanager) IsNestOS() bool { return false } -func (o *osmanager) IsOpenEuler() bool { - if strings.ToLower(o.config.OSImage.Type) == eulerType { - o.config.OSImage.IsOpeneuler = true +func (o *osmanager) IsGeneralOS() bool { + if strings.ToLower(o.config.OSImage.Type) == generalosType { + o.config.OSImage.IsGeneralOS = true return true } return false diff --git a/pkg/terraform/generate.go b/pkg/terraform/generate.go index bd8fe85..d6c4890 100644 --- a/pkg/terraform/generate.go +++ b/pkg/terraform/generate.go @@ -78,7 +78,7 @@ func (infra *Infra) Generate(conf *asset.ClusterAsset, node string) (err error) libvirtAsset := conf.InfraPlatform.(*infraasset.LibvirtAsset) infra.Platform = &Libvirt{ URI: libvirtAsset.URI, - OSImage: libvirtAsset.OSImage, + OSImage: libvirtAsset.OSPath, CIDR: libvirtAsset.CIDR, Gateway: libvirtAsset.Gateway, } -- Gitee