diff --git a/cmd/command/opts/opts.go b/cmd/command/opts/opts.go index 89c87074a374d675360f6f791d59a11e2334c181..76f7db9040fb248b9a89d676eeb93d95993c2b01 100644 --- a/cmd/command/opts/opts.go +++ b/cmd/command/opts/opts.go @@ -57,7 +57,7 @@ type OptionsList struct { } type NKDConfig struct { - Log_Level string + LogLevel string BootstrapUrl } @@ -78,15 +78,15 @@ type InfraPlatform struct { } type OpenStack struct { - UserName string - Password string - Tenant_Name string - Auth_URL string - Region string - Internal_Network string - External_Network string - Glance_Name string - Availability_Zone string + UserName string + Password string + TenantName string + AuthURL string + Region string + InternalNetwork string + ExternalNetwork string + GlanceName string + AvailabilityZone string } type Libvirt struct { diff --git a/cmd/command/setup_opts.go b/cmd/command/setup_opts.go index c3cacc13a8ab25565707c39607805da2b6bd1637..f6c7edf0994c1882a4fd27497b96966c022a1983 100644 --- a/cmd/command/setup_opts.go +++ b/cmd/command/setup_opts.go @@ -73,7 +73,6 @@ func SetupDeployCmdOpts(deployCmd *cobra.Command) { func SetupDestroyCmdOpts(destroyCmd *cobra.Command) { flags := destroyCmd.Flags() flags.StringVarP(&opts.Opts.ClusterID, "cluster-id", "", "", "Unique identifier for the cluster") - flags.StringVarP(&opts.Opts.Platform, "platform", "", "", "Infrastructure platform for the cluster (supports 'libvirt' or 'openstack')") } func SetupUpgradeCmdOpts(upgradeCmd *cobra.Command) { @@ -95,4 +94,5 @@ func SetupExtendCmdOpts(extendCmd *cobra.Command) { func SetupTemplateCmdOpts(templateCmd *cobra.Command) { flags := templateCmd.Flags() flags.StringVarP(&opts.Opts.ClusterConfigFile, "output", "o", "", "Generates a default configuration template at the specified location") + flags.StringVarP(&opts.Opts.Platform, "platform", "", "", "Infrastructure platform for deploying the cluster (supports 'libvirt' 'openstack' 'pxe' 'ipxe')") } diff --git a/cmd/deploy.go b/cmd/deploy.go index 7f5fa004d7b30343aab9c728e5c7addcbbaf36e3..3c73a3c81c0f180bc05f810e826dfbb99342ab57 100755 --- a/cmd/deploy.go +++ b/cmd/deploy.go @@ -191,16 +191,15 @@ func createCluster(conf *asset.ClusterAsset, httpService *httpserver.HTTPService } p := infra.InfraPlatform{} - switch conf.Platform { - case strings.ToLower("libvirt"): - // Start http service + switch strings.ToLower(conf.Platform) { + case "libvirt": if err := httpService.Start(); err != nil { return fmt.Errorf("error starting http service: %v", err) } libvirtMaster := &infra.Libvirt{ PersistDir: configmanager.GetPersistDir(), - ClusterID: conf.Cluster_ID, + ClusterID: conf.ClusterID, Node: "master", Count: uint(len(conf.Master)), } @@ -213,7 +212,7 @@ func createCluster(conf *asset.ClusterAsset, httpService *httpserver.HTTPService libvirtWorker := &infra.Libvirt{ PersistDir: configmanager.GetPersistDir(), - ClusterID: conf.Cluster_ID, + ClusterID: conf.ClusterID, Node: "worker", Count: uint(len(conf.Master)), } @@ -222,15 +221,14 @@ func createCluster(conf *asset.ClusterAsset, httpService *httpserver.HTTPService logrus.Errorf("Failed to deploy worker nodes:%v", err) return err } - case strings.ToLower("openstack"): - // Start http service + case "openstack": if err := httpService.Start(); err != nil { return fmt.Errorf("error starting http service: %v", err) } openstackMaster := &infra.OpenStack{ PersistDir: configmanager.GetPersistDir(), - ClusterID: conf.Cluster_ID, + ClusterID: conf.ClusterID, Node: "master", Count: uint(len(conf.Master)), } @@ -242,7 +240,7 @@ func createCluster(conf *asset.ClusterAsset, httpService *httpserver.HTTPService openstackWorker := &infra.OpenStack{ PersistDir: configmanager.GetPersistDir(), - ClusterID: conf.Cluster_ID, + ClusterID: conf.ClusterID, Node: "worker", Count: uint(len(conf.Master)), } @@ -251,7 +249,7 @@ func createCluster(conf *asset.ClusterAsset, httpService *httpserver.HTTPService logrus.Errorf("Failed to deploy worker nodes:%v", err) return err } - case strings.ToLower("pxe"): + case "pxe": pxeConfig := conf.InfraPlatform.(*infraasset.PXEAsset) pxe := &infra.PXE{ HTTPServerPort: pxeConfig.HTTPServerPort, @@ -266,7 +264,7 @@ func createCluster(conf *asset.ClusterAsset, httpService *httpserver.HTTPService logrus.Errorf("Failed to deploy PXE:%v", err) return err } - case strings.ToLower("ipxe"): + case "ipxe": ipxeConfig := conf.InfraPlatform.(*infraasset.IPXEAsset) ipxe := &infra.IPXE{ IPXEPort: ipxeConfig.IPXEPort, @@ -451,20 +449,22 @@ func addIgnitionFiles(httpService *httpserver.HTTPService, conf *asset.ClusterAs // control plane ignition files for initializing the cluster, // master ignition files for master node joining the cluster, // and worker ignition files for worker node joining the cluster. - if len(conf.Master) > 0 { - if err := httpService.AddFileToCache(constants.ControlplaneIgn, conf.BootConfig.Controlplane.Content); err != nil { - return fmt.Errorf("error adding control plane ignition file to cache: %v", err) - } + + // Only one master node + if err := httpService.AddFileToCache(constants.ControlplaneIgn, conf.BootConfig.Controlplane.Content); err != nil { + return fmt.Errorf("error adding control plane ignition file to cache: %v", err) } + + // multiple master nodes if len(conf.Master) > 1 { if err := httpService.AddFileToCache(constants.MasterIgn, conf.BootConfig.Master.Content); err != nil { return fmt.Errorf("error adding master ignition file to cache: %v", err) } } - if len(conf.Worker) > 0 { - if err := httpService.AddFileToCache(constants.WorkerIgn, conf.BootConfig.Worker.Content); err != nil { - return fmt.Errorf("error adding worker ignition file to cache: %v", err) - } + + if err := httpService.AddFileToCache(constants.WorkerIgn, conf.BootConfig.Worker.Content); err != nil { + return fmt.Errorf("error adding worker ignition file to cache: %v", err) } + return nil } diff --git a/cmd/destroy.go b/cmd/destroy.go index 89bd1b1166f75fc4e4edda539d0319c1846fcaaf..8db676a29b929e2fb9e7582df75464ce572b9455 100644 --- a/cmd/destroy.go +++ b/cmd/destroy.go @@ -51,24 +51,20 @@ func runDestroyCmd(cmd *cobra.Command, args []string) error { return err } - platform, err := cmd.Flags().GetString("platform") - if err != nil { - logrus.Errorf("Failed to get platform: %v", err) - return err - } - if platform == "" { - logrus.Errorf("platform is not provided: %v", err) + if err := configmanager.Initial(&opts.Opts); err != nil { + logrus.Errorf("Failed to initialize configuration parameters: %v", err) return err } - if err := configmanager.Initial(&opts.Opts); err != nil { - logrus.Errorf("Failed to initialize configuration parameters: %v", err) + clusterConfig, err := configmanager.GetClusterConfig(clusterID) + if err != nil { + logrus.Errorf("Failed to get cluster config using the cluster id: %v", err) return err } var infrastructure infra.Infrastructure - switch platform { - case strings.ToLower("libvirt"): + switch strings.ToLower(clusterConfig.Platform) { + case "libvirt": persistDir := configmanager.GetPersistDir() infrastructure = &infra.Libvirt{ @@ -92,7 +88,7 @@ func runDestroyCmd(cmd *cobra.Command, args []string) error { logrus.Errorf("Failed to destroy master nodes:%v", err) return err } - case strings.ToLower("openstack"): + case "openstack": persistDir := configmanager.GetPersistDir() infrastructure = &infra.OpenStack{ @@ -116,12 +112,10 @@ func runDestroyCmd(cmd *cobra.Command, args []string) error { logrus.Errorf("Failed to destroy master nodes:%v", err) return err } - case strings.ToLower("pxe"): + case "pxe": logrus.Println("If necessary, manually delete the configuration file for deploying the PXE server") - return err - case strings.ToLower("ipxe"): + case "ipxe": logrus.Println("If necessary, manually delete the configuration file for deploying the iPXE server") - return err default: logrus.Errorf("unsupported platform") return err diff --git a/cmd/extend.go b/cmd/extend.go index c8a1939c07d479e3d6ee7416eed97ae079a65ce9..35c85e63e3e441494ae6b65fff480025dbd58d8d 100755 --- a/cmd/extend.go +++ b/cmd/extend.go @@ -62,12 +62,6 @@ func runExtendCmd(cmd *cobra.Command, args []string) error { logrus.Errorf("cluster-id is not provided: %v", err) } - num, err := cmd.Flags().GetUint("num") - if err != nil { - logrus.Errorf("Failed to get the number of extended nodes: %v", err) - return err - } - if err := configmanager.Initial(&opts.Opts); err != nil { logrus.Errorf("Failed to initialize configuration parameters: %v", err) return err @@ -78,17 +72,30 @@ func runExtendCmd(cmd *cobra.Command, args []string) error { logrus.Errorf("Failed to get cluster config using the cluster id: %v", err) return err } - newHostnames := extendArray(clusterConfig, int(num)) - if err := extendCluster(clusterConfig); err != nil { - logrus.Errorf("Failed to extend %s cluster: %v", clusterID, err) + httpService := httpserver.NewHTTPService(configmanager.GetBootstrapIgnPort()) + defer httpService.Stop() + + if strings.ToLower(clusterConfig.Platform) == "pxe" || strings.ToLower(clusterConfig.Platform) == "ipxe" { + if err := extendCluster(clusterConfig, httpService); err != nil { + logrus.Errorf("Failed to extend %s cluster: %v", clusterID, err) + return err + } + return nil + } + + num, err := cmd.Flags().GetUint("num") + if err != nil { + logrus.Errorf("Failed to get the number of extended nodes: %v", err) return err } - if err := configmanager.Persist(); err != nil { - logrus.Errorf("Failed to persist the cluster asset: %v", err) + + if err := extendCluster(clusterConfig, httpService); err != nil { + logrus.Errorf("Failed to extend %s cluster: %v", clusterID, err) return err } + newHostnames := extendArray(clusterConfig, int(num)) logrus.Infof("Waiting for cluster extend nodes to be ready...") if err := checkNodesReady(clusterConfig, newHostnames); err != nil { return err @@ -118,38 +125,36 @@ func extendArray(c *asset.ClusterAsset, count int) []string { return newHostnames } -func extendCluster(conf *asset.ClusterAsset) error { +func extendCluster(conf *asset.ClusterAsset, httpService *httpserver.HTTPService) error { data, err := os.ReadFile(conf.BootConfig.Worker.Path) if err != nil { logrus.Errorf("error reading boot config file: %v", err) return err } - - httpService := &httpserver.HTTPService{ - Port: configmanager.GetBootstrapIgnPort(), - FileCache: make(map[string][]byte), - } - httpService.AddFileToCache(constants.WorkerIgn, data) - if err := httpService.Start(); err != nil { - logrus.Errorf("error starting file service: %v", err) - return err - } - defer httpService.Stop() - // regenerate worker.tf - var worker terraform.Infra - if err := worker.Generate(conf, "worker"); err != nil { - logrus.Errorf("Failed to generate worker terraform file") + if err := configmanager.Persist(); err != nil { + logrus.Errorf("Failed to persist the cluster asset: %v", err) return err } p := infra.InfraPlatform{} - switch conf.Platform { - case strings.ToLower("libvirt"): + switch strings.ToLower(conf.Platform) { + case "libvirt": + if err := httpService.Start(); err != nil { + return fmt.Errorf("error starting http service: %v", err) + } + + // regenerate worker.tf + var worker terraform.Infra + if err := worker.Generate(conf, "worker"); err != nil { + logrus.Errorf("Failed to generate worker terraform file") + return err + } + libvirtWorker := &infra.Libvirt{ PersistDir: configmanager.GetPersistDir(), - ClusterID: conf.Cluster_ID, + ClusterID: conf.ClusterID, Node: "worker", Count: uint(len(conf.Worker)), } @@ -158,10 +163,21 @@ func extendCluster(conf *asset.ClusterAsset) error { logrus.Errorf("Failed to extend worker nodes:%v", err) return err } - case strings.ToLower("openstack"): + case "openstack": + if err := httpService.Start(); err != nil { + return fmt.Errorf("error starting http service: %v", err) + } + + // regenerate worker.tf + var worker terraform.Infra + if err := worker.Generate(conf, "worker"); err != nil { + logrus.Errorf("Failed to generate worker terraform file") + return err + } + openstackWorker := &infra.OpenStack{ PersistDir: configmanager.GetPersistDir(), - ClusterID: conf.Cluster_ID, + ClusterID: conf.ClusterID, Node: "worker", Count: uint(len(conf.Worker)), } @@ -170,7 +186,7 @@ func extendCluster(conf *asset.ClusterAsset) error { logrus.Errorf("Failed to extend worker nodes:%v", err) return err } - case strings.ToLower("pxe"): + case "pxe": pxeConfig := conf.InfraPlatform.(*infraasset.PXEAsset) pxe := &infra.PXE{ HTTPServerPort: pxeConfig.HTTPServerPort, @@ -178,18 +194,20 @@ func extendCluster(conf *asset.ClusterAsset) error { TFTPServerIP: pxeConfig.TFTPServerIP, TFTPServerPort: pxeConfig.TFTPServerPort, TFTPRootDir: pxeConfig.TFTPRootDir, + HTTPService: httpService, } p.SetInfra(pxe) if err := p.Extend(); err != nil { logrus.Errorf("Failed to extend worker nodes:%v", err) return err } - case strings.ToLower("ipxe"): + case "ipxe": ipxeConfig := conf.InfraPlatform.(*infraasset.IPXEAsset) ipxe := &infra.IPXE{ IPXEPort: ipxeConfig.IPXEPort, IPXEFilePath: ipxeConfig.IPXEFilePath, IPXEOSInstallTreePath: ipxeConfig.IPXEOSInstallTreePath, + HTTPService: httpService, } p.SetInfra(ipxe) if err := p.Extend(); err != nil { diff --git a/cmd/template.go b/cmd/template.go index cefd99a751ce15568b0f715a4f91448ba2a804c3..cc4da892059d183c64f1447a76b5b48c8d1a278d 100644 --- a/cmd/template.go +++ b/cmd/template.go @@ -17,12 +17,15 @@ limitations under the License. package cmd import ( + "errors" "nestos-kubernetes-deployer/cmd/command" "nestos-kubernetes-deployer/cmd/command/opts" "nestos-kubernetes-deployer/pkg/configmanager/asset" + "nestos-kubernetes-deployer/pkg/configmanager/asset/infraasset" "nestos-kubernetes-deployer/pkg/utils" "os" "runtime" + "strings" "github.com/sirupsen/logrus" "github.com/spf13/cobra" @@ -46,27 +49,64 @@ func createTemplate(cmd *cobra.Command, args []string) error { if opts.Opts.Arch != "" { arch = opts.Opts.Arch } - conf, err := asset.GetDefaultClusterConfig(arch) + + conf, err := asset.GetDefaultClusterConfig(arch, opts.Opts.Platform) if err != nil { return err } + conf.InfraPlatform = getDefaultInfraAsset(strings.ToLower(conf.Platform)) + data, err := yaml.Marshal(conf) if err != nil { logrus.Errorf("Faild to marshal template config: %v", err) return err } - file, err := cmd.Flags().GetString("file") - if err != nil { - logrus.Errorf("Failed to create template file: %v", err) - return err + + output, _ := cmd.Flags().GetString("output") + if output == "" { + output = "." } - if file == "" { - file = "./template.yaml" + if !strings.HasSuffix(output, "/") { + output = output + "/" } - if err := os.WriteFile(file, data, utils.DeployConfigFileMode); err != nil { + + if err := os.WriteFile(output+"template.yaml", data, utils.DeployConfigFileMode); err != nil { logrus.Errorf("Faild to write template config file: %v", err) return err } return nil } + +func getDefaultInfraAsset(platform string) interface{} { + switch platform { + case "libvirt": + return infraasset.LibvirtAsset{ + URI: "qemu:///system", + CIDR: "192.168.132.0/24", + Gateway: "192.168.132.1", + } + case "openstack": + return infraasset.OpenStackAsset{ + UserName: "admin", + TenantName: "admin", + AuthURL: "http://controller:5000/v3", + Region: "RegionOne", + AvailabilityZone: "nova", + } + case "pxe": + return infraasset.PXEAsset{ + HTTPServerPort: "9080", + HTTPRootDir: "/var/www/html/", + TFTPServerPort: "69", + TFTPRootDir: "/var/lib/tftpboot/", + } + case "ipxe": + return infraasset.IPXEAsset{ + IPXEPort: "9080", + IPXEOSInstallTreePath: "/var/www/html/", + } + default: + return errors.New("unsupported platform") + } +} diff --git a/cmd/upgrade.go b/cmd/upgrade.go index 2075df25195d162c44dc79cebd90fa504bb89d3a..bbc265057f029ca4f7c7d67b7d6c86e5cd38283c 100755 --- a/cmd/upgrade.go +++ b/cmd/upgrade.go @@ -98,7 +98,7 @@ spec: maxUnavailable: %d `, clusterConfig.Housekeeper.OSImageURL, clusterConfig.Housekeeper.KubeVersion, clusterConfig.Housekeeper.EvictPodForce, clusterConfig.Housekeeper.MaxUnavailable) - adminconfig := filepath.Join(configmanager.GetPersistDir(), clusterConfig.Cluster_ID, "admin.config") + adminconfig := filepath.Join(configmanager.GetPersistDir(), clusterConfig.ClusterID, "admin.config") if err := kubeclient.ApplyHousekeeperCR(yamlData, adminconfig); err != nil { logrus.Errorf("Failed to deploy Custom Resource: %v", err) return err diff --git a/data/assets_vfsdata.go b/data/assets_vfsdata.go index 226880c7df22d38fa3d9e35e5ccc839deb391e7e..46e05c7dd0633100c2e2926eb889027eb39b9576 100644 --- a/data/assets_vfsdata.go +++ b/data/assets_vfsdata.go @@ -20,275 +20,275 @@ var Assets = func() http.FileSystem { fs := vfsgen۰FS{ "/": &vfsgen۰DirInfo{ name: "/", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/bootconfig": &vfsgen۰DirInfo{ name: "bootconfig", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/bootconfig/files": &vfsgen۰DirInfo{ name: "files", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, time.UTC), }, "/bootconfig/files/etc": &vfsgen۰DirInfo{ name: "etc", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/bootconfig/files/etc/docker": &vfsgen۰DirInfo{ name: "docker", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, time.UTC), }, "/bootconfig/files/etc/docker/daemon.json": &vfsgen۰FileInfo{ name: "daemon.json", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 22, 2, 43, 44, 612550465, time.UTC), }, "/bootconfig/files/etc/isulad/daemon.json.template": &vfsgen۰CompressedFileInfo{ name: "daemon.json.template", - modTime: time.Date(2024, 5, 20, 7, 50, 39, 786495422, time.UTC), + modTime: time.Date(2024, 5, 22, 2, 43, 44, 612550465, 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, 21, 7, 18, 39, 766578961, time.UTC), + modTime: time.Date(2024, 5, 22, 2, 43, 44, 612550465, time.UTC), }, "/bootconfig/files/etc/nkdfiles/init-config.yaml.template": &vfsgen۰CompressedFileInfo{ name: "init-config.yaml.template", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 321036328, 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, 21, 8, 5, 37, 344378807, time.UTC), + modTime: time.Date(2024, 5, 22, 2, 43, 44, 612550465, time.UTC), uncompressedSize: 6299, 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"), }, "/bootconfig/files/etc/sysctl.d": &vfsgen۰DirInfo{ name: "sysctl.d", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/bootconfig/files/etc/sysctl.d/kubernetes.conf": &vfsgen۰CompressedFileInfo{ name: "kubernetes.conf", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/bootconfig/files/etc/systemd/system": &vfsgen۰DirInfo{ name: "system", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/bootconfig/files/etc/systemd/system/kubelet.service.d": &vfsgen۰DirInfo{ name: "kubelet.service.d", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), uncompressedSize: 907, 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"), }, "/bootconfig/systemd": &vfsgen۰DirInfo{ name: "systemd", - modTime: time.Date(2024, 5, 21, 3, 29, 2, 704644906, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/bootconfig/systemd/init-cluster.service": &vfsgen۰CompressedFileInfo{ name: "init-cluster.service", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 21, 3, 29, 2, 704644906, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/housekeeper/1housekeeper.io_updates.yaml": &vfsgen۰CompressedFileInfo{ name: "1housekeeper.io_updates.yaml", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/terraform/generalos": &vfsgen۰DirInfo{ name: "generalos", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/terraform/generalos/libvirt": &vfsgen۰DirInfo{ name: "libvirt", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/terraform/generalos/libvirt/master.tf.template": &vfsgen۰CompressedFileInfo{ name: "master.tf.template", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), - uncompressedSize: 3346, + modTime: time.Date(2024, 5, 21, 1, 34, 34, 879652527, time.UTC), + uncompressedSize: 3341, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\x9c\x57\xdf\x6b\xe4\x36\x10\x7e\xf7\x5f\x31\x15\x7d\xb8\x0b\x44\x49\xcb\xd1\x42\x61\x29\x6d\x02\x6d\x1e\x8e\x86\xb4\xf7\x74\x04\xa3\xd8\xb3\xbb\x22\xb2\xe4\xea\x87\xd3\xed\xe2\xff\xfd\x90\x2c\xf9\xd7\xda\xb9\xdc\x06\xb2\x5e\xcb\x33\xdf\x8c\xbe\x99\xf9\xe4\xb5\xa8\x35\xdb\x2a\x5d\xc1\x31\x03\xd0\xf8\xaf\xe3\x1a\xcb\xbc\xd6\xaa\xe1\x25\x6a\x13\x96\x01\x04\x7f\x6a\xb8\xb6\xb0\x89\xf7\x00\x46\x39\x5d\x20\x6c\x80\x94\x15\x2b\x1a\x5e\x30\x7d\x15\xad\x48\x34\x69\x50\x1b\xae\xa4\xb7\xb9\xa6\x3f\xd3\x9f\xba\xf5\x36\xf3\xff\x6d\x96\xa5\x18\x40\x92\x5f\x00\x77\x9a\x7b\x8f\xe3\x91\xde\x0b\x66\x7d\x6a\xf4\xd3\xc3\x5d\xdb\x12\xef\xd3\x30\xcd\xd9\x93\x40\x20\x85\x70\xc6\xa2\xce\x79\xd9\xb9\xd9\x43\x8d\x1e\x7e\x03\xc6\x6a\x2e\x77\x19\x40\x89\x5b\xe6\x84\x8d\x68\x37\x9d\xc3\xdd\xed\x09\x14\x97\xc6\x32\x59\x60\x5e\x28\x27\xed\x1b\xe1\x3e\x32\x8f\x46\x6f\xbc\xcb\x3a\xe2\x5e\x19\x2b\x59\x85\x73\x50\xc1\x8d\x7d\xd7\x21\xbf\x9f\x40\x0f\xc8\x7f\x46\xd7\xb6\x5d\xc1\xe6\xf5\x19\xa8\x77\xf7\x73\xbc\x9e\xc8\xba\xf9\x90\x17\xbc\xd4\x6f\x24\xa0\xaf\xce\xcd\xdd\xed\xc3\x7a\x79\x3c\xea\x8e\x59\x7c\x61\x87\x6f\x05\xfe\xa3\x73\x7b\xa5\x5e\xb5\x3b\x83\x82\x9b\xfb\x4f\xab\x9c\x6a\x56\x9d\x81\xf8\xf0\xdb\xc7\x55\xc4\x92\x9b\xe7\x33\x20\x6f\xb9\x79\x5e\xc5\x2c\x84\x72\x25\x97\xdc\x9e\x01\xfc\xbb\x52\xf6\x46\xc9\x2d\xdf\x75\xf0\x1a\xe3\x24\xa7\x29\xcc\x6b\xa5\x04\x01\xd2\x5d\x3c\xbe\xef\x42\x5f\x9b\xef\x8f\x0d\xd3\x74\x18\xbc\xf6\x32\xd8\xa4\x0c\xbc\x14\x70\xed\x6f\x6b\x66\xf7\xfe\xf6\xaa\xe9\x44\x21\x09\xc3\x15\xaf\xd8\x0e\xcd\xd5\x09\x10\x59\xce\xa4\x51\xc2\xf9\xd9\x21\xe9\x4b\x9f\x0d\x2c\xe7\x13\xed\x7c\x0a\x4a\x89\x48\xc9\xb0\x2b\x1a\x3e\x3c\x40\x36\x16\xb0\x71\xcf\xfd\xf5\xf7\x9d\xcf\x31\xbf\x67\x76\xdf\x7e\x35\xaf\xa1\xb8\x41\x3a\xa0\xff\xdb\x80\x4f\x6d\x2a\x2c\x43\xee\x83\x55\xdc\xc3\x89\x5e\x7c\x0e\x1e\x94\xcb\x12\xff\x7b\x6c\x2f\x43\x9c\x0c\xe0\x89\x19\x8c\xd1\x73\x5e\x8e\x76\xd7\xad\xd1\x78\xe1\xe5\xc0\xc0\x10\x6b\x9d\x09\xfe\xff\x34\xab\x49\x4a\x3e\xf6\x24\x1d\xb8\x80\x1f\xae\x7f\xfc\x30\xbd\x2c\x13\xd5\x37\x6a\x1c\x03\x32\xeb\xdc\x81\xb5\xaf\x12\xf6\x56\xae\x28\x37\x8a\x4c\xb6\xff\xca\xce\x9d\x41\x9d\x97\xcc\x32\xd8\x80\xbf\x50\x8b\x55\x2d\x98\xc5\x7c\xcb\x05\xd2\xfe\x31\xbd\xa0\x1a\x65\x89\x1a\xcb\x49\x34\xbf\xeb\xe0\x4e\x26\x8e\x04\x48\xef\x3a\xdb\xe8\xca\x3e\x93\x3b\x6c\xc0\x03\xbc\x9b\x1a\x25\xd2\x26\xb1\xdf\x2f\x53\x2e\xd1\xbe\x28\xed\xb9\xee\xbf\x1d\x97\x89\x1c\x0f\x8e\xc4\x70\x6a\x57\xaa\x1c\xac\x24\x0b\x6b\xa5\xaa\x18\x97\x6b\x9e\x54\xa8\x82\x05\x0d\x60\x65\xa9\xd1\x18\x34\xb0\x81\xcf\x13\xab\x74\xb0\x3c\x66\x1e\x6e\x5f\xd4\xf1\x25\x02\xa5\xd7\x35\xdf\xc6\x56\x3b\x0c\xaf\x05\xde\x40\x9a\xd9\xf3\x10\x3a\x9a\x00\x84\x80\xb9\x92\xe2\x30\x73\xd4\xca\x59\x4c\xbe\x3e\xde\xc0\xf7\x49\x2a\xc1\x26\x1e\x4b\x4b\x36\xf1\x51\x82\x66\xce\x2a\x63\x59\x78\x01\x0a\x21\x17\xa9\xef\x98\x22\x40\x76\x28\x51\x33\xa1\xcc\xa2\x36\xbc\x51\x1c\xe6\x66\x8b\xed\xee\xd1\x6b\x17\xf7\x1c\xaa\xb7\x01\xe2\x2d\x2f\x6b\x66\x8c\xdd\x6b\xe5\x76\x7b\x92\x75\x6f\x5d\x8d\x37\x7d\x25\x8f\xda\xcd\xb1\x2b\xac\x94\x3e\xac\x7a\x68\x56\x9d\x64\x93\x7a\xf5\x44\x76\xa6\x5a\x40\xfb\x5b\x7a\x41\x79\x79\x12\x98\x15\x7b\x2e\x71\xac\x94\xe1\x08\x0b\xab\xff\x1c\x6a\xf4\xda\x3c\xae\x4b\x32\x8b\x0d\x91\x8e\xc4\x91\xff\x73\x53\x91\xd0\x5f\xdc\x3c\x47\xc2\x5e\x51\xd2\x90\xe3\x52\x66\xa1\x1f\xe2\x68\xe5\x5c\x5a\xd4\x5b\x56\x60\x04\x4c\xeb\xfd\x19\x35\x9b\x4a\xda\x5f\x3b\xfd\x01\x48\x55\xfd\xb6\x9a\x8f\xa7\x6d\xc9\x8f\xd7\x53\xc5\xfe\xce\x8f\xb3\x13\x82\xc0\xaf\xdd\x6c\xae\x59\x3e\xc2\x2f\xe0\x0d\x43\x8c\x17\xc6\x6d\xbe\x55\x3a\x17\xc8\x0c\xce\xa6\x6d\xa7\x59\xbd\xe7\x45\x9a\xb7\x31\xe1\x1b\x20\x8d\x2c\x48\xfc\xe1\x60\x2c\xca\x3c\xbd\x20\xc4\xb4\x49\x42\x29\x94\x34\x4a\xe0\x32\x48\x6d\x0f\x1d\x88\x65\x7a\x87\x5e\xbe\xc3\x00\x92\x6b\x92\x7e\x42\x28\x67\x6b\x67\x81\xf8\x99\xed\x66\xad\x61\xc2\xe1\x88\xf8\x6e\x26\x69\x3f\x91\xf4\x82\x9e\x14\x8f\x5e\xd3\x9e\xce\xac\xfd\x12\x00\x00\xff\xff\xe9\x15\x97\xd2\x12\x0d\x00\x00"), + 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, 17, 3, 0, 0, 437347149, time.UTC), - uncompressedSize: 2645, + modTime: time.Date(2024, 5, 21, 1, 34, 48, 870839785, 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\x58\x3c\x0a\xbf\x4b\xc5\x79\x41\xd9\x68\x6a\x57\xed\x30\xf9\xcb\x21\x26\x9e\x77\xc3\xa8\x7f\x1a\x97\x34\x9e\x55\xfe\xe7\x0e\xc3\x95\x91\xf8\xf7\x97\xf6\xb6\xcb\x95\x01\x3c\x09\x87\x49\x41\xd1\xb1\xbd\xce\x8b\x85\x8c\x8b\xae\xa8\x7f\x4e\xf5\xcd\xc4\x45\x15\x33\x61\x70\x03\xdf\xde\x7d\xf7\x6e\xfe\x58\xb6\xed\x58\x2e\xa9\x18\xd9\x49\xfd\x8c\x1e\xfe\xa7\x79\xaf\x75\x8d\x2b\x67\xe7\x26\x5c\x5c\x7d\x70\x48\x85\x14\x5e\x40\x0e\xf1\xc1\x3d\x56\xb5\x16\x1e\x8b\x8d\xd2\xc8\x8f\xd3\xfc\x86\x13\x1a\x89\x84\x72\x96\x2f\xae\xbb\x83\xb3\x19\x90\x01\x3b\x42\x4f\x96\xba\xb2\xd2\x01\x0e\x39\x44\x82\x37\xf3\xa0\xc1\xb6\x59\xee\xb7\xcb\xa6\x4b\x5b\x09\x65\x18\xb0\x2d\x1a\x24\xa1\xad\x5b\x2e\xd8\x57\xd6\xeb\x49\xd8\xa2\xeb\x91\xbd\x0e\xe9\xe3\x56\x59\xd9\x95\x68\x8c\xbc\xad\x85\x73\x7e\x47\x36\x6c\x77\x2c\xeb\xbf\x5e\x4d\x0c\xbd\xa0\xa3\x0e\xa7\xdc\x15\x56\x96\x5e\x56\x11\x24\xaa\x33\x35\x83\x61\x47\xc4\x72\x49\xf2\xe3\x2b\xbf\xe1\x4a\x9e\x25\x16\xe5\x4e\x19\x9c\x36\xd2\xe1\xc0\x3f\xf4\xa3\x7f\xbc\xd4\x18\x0f\x0c\x00\x11\xbc\x75\x5e\xd0\x98\xcd\x53\xc0\xc9\xf9\x38\xc1\xef\x9b\x8a\x65\xf1\x84\x54\x6e\x9f\x0c\x4b\xad\xad\xe4\x44\x66\x3f\xc6\x3b\x8d\x4b\xca\xda\xc8\x61\xd0\x3f\x5b\xda\x17\xca\x78\xa4\x8d\x28\x31\x11\x0e\xe3\x97\x8e\x4e\x83\xe9\xa2\x31\x6c\xe8\xff\xdb\x6e\x00\x21\x25\xa1\x73\xe8\x16\x71\xaa\x9e\x9f\x19\x5f\xe5\xc0\x4c\xd0\x9a\xc1\x4f\xf0\xf9\x52\xe4\x17\xf8\x11\x62\x60\x97\xe3\x59\x28\x5f\x6c\x2c\x15\x1a\x85\xc3\xd1\xd7\x6e\xf5\x5b\x12\xf5\x4e\x95\xc3\x1d\x6b\xea\x75\x0e\xac\x31\x25\x4b\x77\x2f\xe7\xd1\x14\xdd\x74\x0e\x2c\xc9\x66\x03\x4b\x69\x8d\xb3\x1a\x97\x49\x6a\xff\xd2\x93\x78\x41\x5b\xf4\x45\x6d\xbb\x4b\x1c\xbb\x63\xc3\x2d\xcc\x06\x5f\x07\x0f\x4c\xd5\xcd\xbb\xbe\xcd\x1a\xa1\x03\x4e\x76\xb2\x6f\x47\x7e\x6c\x46\x7e\xc3\xcf\xf6\x8d\xdf\xf1\xa3\x9d\x59\xfb\x6f\x00\x00\x00\xff\xff\x8a\x7b\x4e\xf8\x55\x0a\x00\x00"), + 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, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 17, 8, 16, 33, 496540174, time.UTC), }, "/terraform/generalos/openstack/master.tf.template": &vfsgen۰CompressedFileInfo{ name: "master.tf.template", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), - uncompressedSize: 4745, + modTime: time.Date(2024, 5, 21, 1, 30, 33, 652460138, 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\x44\x39\x84\x29\x91\xe3\x8b\x9a\xd6\xf0\x7f\x1f\x28\x92\xb2\x25\x53\xb6\xe3\x24\x40\x51\x14\xa0\x8e\x77\xcf\x73\x77\xe4\xf1\xce\x51\x58\x08\x54\x30\x51\xc2\x22\x02\x10\xf8\x3f\x4d\x04\xce\x53\x2e\x58\x4d\x72\x2c\x64\x23\x06\x60\x1c\x57\x52\xa1\x6c\x0e\x17\x4e\x02\x20\x99\x16\x19\x86\x0b\x88\x5b\x90\x23\x6f\x77\xd4\x1a\xbc\x6f\x57\xb1\xb3\xab\xb1\x90\x84\x55\xc6\x70\x9c\x9c\x4c\x92\xb1\xdd\x58\x46\xe6\xff\x32\x8a\x3c\x06\xc4\x2b\xd3\x86\x54\x4b\x2c\xd2\x0a\x95\x18\xc0\x18\x2f\x16\xc9\x0d\x45\xca\xf0\x26\x77\x12\x0b\xb3\xb3\x5c\x1a\x30\x8e\xa4\xfc\xc2\x44\x0e\x9b\x8a\x37\x6e\xcb\x2a\x2a\x5c\xa1\x4a\x59\xcc\x9e\xe2\xdf\x76\xeb\x53\x0b\x8a\xb4\x7a\x48\xb5\xa0\x01\xd0\x4b\xb3\x75\x77\xfb\x97\x55\x14\x78\x66\xc2\x83\x80\xe2\x6d\xb3\x65\xd4\x96\x51\x54\x23\x41\xd0\x3d\xc5\x10\x67\x54\x4b\x85\x45\x4a\x72\x1b\xa8\xfa\xca\xb1\xb5\x96\x4a\x90\x6a\x16\x01\xe4\xb8\x40\x9a\x2a\x07\x78\x65\x0d\xae\x3f\x6c\x40\x11\x93\xb0\x2a\xc3\x69\xc6\x74\xa5\xf6\x84\xfb\x88\x0c\x5a\x72\x65\x4c\x86\x11\x1f\x98\x54\x26\x53\x7d\x50\x4a\xa4\x7a\x63\x91\xdf\x76\xa0\x57\xc8\x7f\x3a\xd3\xe5\x72\xc8\x5b\xae\x0f\x80\xbd\xba\xb9\x1b\x44\x14\xa8\x3c\x00\xf1\xf6\xf2\xe3\x20\x62\x4e\xe4\xfc\x00\xc8\x0f\x44\xce\x07\x31\x99\x24\x25\x9a\xe1\x3d\xcf\xa9\xbd\x47\x7f\xd0\xc6\xda\x5f\xce\x0e\x36\xaa\x11\xa1\xe8\x9e\x50\xa2\xbe\xa6\xdf\x58\xf5\x64\xf0\xcb\x75\x80\x7f\x58\x85\x87\xaf\x84\xa9\xc8\x1c\x29\x74\x40\x5a\x7e\x63\x4c\x5d\xb1\xaa\x20\xb3\xcd\xe4\x28\x53\xcc\x34\xad\xb0\x7a\xaa\xef\xd7\xde\xf6\x13\x56\x5f\x98\x98\x0f\xbb\x4e\xf8\x01\x4e\x5f\xdf\xf4\x9d\xc5\x8f\x87\x3b\xfb\xfb\x63\xd0\x59\x81\xdd\xcb\xba\x7a\xff\xd2\x8c\x95\x5c\x2b\x9c\x16\x14\xd5\x4c\xa4\xf5\x24\x86\xd8\xae\x2d\x69\x53\xed\xee\xc5\xa9\x91\x48\xba\xcf\x40\x04\xe0\x9e\xcd\x4d\x05\x5f\xd5\x9f\x1b\xcd\x84\x54\x39\x7e\xfc\x37\x02\xa8\x33\xae\x65\x10\x91\xeb\xbe\xae\x40\x25\x04\xc1\x05\x2a\xfb\xba\xa6\x8a\x82\xba\x66\xa3\xaf\x4c\x64\xca\xf5\x3d\x25\x59\xd3\x65\x84\xc6\x83\x09\xba\xa7\x2c\x9b\x4b\xc5\x04\x9a\xe1\xb4\x66\x54\x97\x38\xad\xa7\x31\xc4\x76\xbd\x9e\xa5\xad\x19\xda\x33\x3b\x92\x7c\xc3\x7b\x44\xb0\xe3\x34\x25\xce\x66\x82\x69\x6e\xcf\xd3\x7f\x59\x5f\x57\x07\xd6\x74\x91\x1f\x17\x86\x6a\xd5\x28\x96\x47\x65\x73\x25\xe3\xe6\x7a\xc9\x4c\x10\xae\x5c\x53\xf5\x38\x50\x30\x01\xf3\x73\x09\x5e\xd3\x9c\x94\xa6\xd8\x35\xf0\x42\xb0\x32\xe5\x4c\xa8\x86\x60\x32\x69\x84\x8a\x79\xd1\x9a\x90\x70\x33\x0f\x28\x96\x31\xda\x9c\x43\xc6\x6d\xc7\xce\x48\x2e\xd6\x5c\x1c\x25\xcd\xbf\xf7\xa3\xb8\xe9\xe4\xdb\xd8\x8e\xc6\x01\x36\x27\xec\xb1\x91\xac\x7c\x36\xdd\xf9\x28\x40\xe7\x84\x2f\x1f\xdc\xf1\xf1\x34\x40\xe7\xa5\x2f\xcf\x37\x99\x9e\xfd\x1c\x3a\xbc\xe9\xab\x45\x38\x0e\x12\x7a\xe9\xcb\xf3\x9d\x86\x53\x7a\xfa\x7a\x39\x1d\x8f\x26\xc7\xe7\xa1\x18\x5b\xf9\xab\x70\x9e\x8c\xc2\x9c\x27\xaf\x75\x92\xd3\xd1\x68\x14\xe2\x9c\x4e\xce\x4e\xcf\xbe\x17\x4e\x9d\xef\xc5\xb9\xe3\xb1\x6d\x9f\xe9\xe6\xb1\xf5\x5f\xfd\xf6\x09\x10\xee\x64\x9b\x7d\x74\x48\x73\xa8\x65\x34\x83\x5e\xda\xb1\xef\x59\xba\x61\x30\x02\x70\x6d\xbe\xdb\x03\xf6\x6b\x4c\x38\xd3\xc2\x0c\x6e\x4d\x0b\x90\xd6\xf2\xf3\xd6\xd6\x93\xf8\x75\x62\x00\x0d\xc8\xc6\x08\xe9\xe9\x37\x36\xfc\xaf\x32\x33\x04\xae\x67\x44\xe1\x92\x53\xa4\x70\x41\x28\x7e\xd3\x71\xdc\x8f\x8c\x1d\xc7\x7f\x82\x05\xf8\x88\xf6\x8a\x14\x96\x6f\xcd\x1d\xab\xec\xe0\xe4\xae\x59\x28\x5d\xab\xe9\xcc\xde\x44\xf2\x88\xf3\x94\xf0\xb4\x3e\xee\xf3\x10\xde\x65\xf8\xe1\x02\xe2\x4a\x53\x1a\xc3\xaf\xdb\x15\x7f\x01\xa3\xb6\xed\x0a\x3a\x37\x49\x35\x4b\x0b\xca\x90\x22\xd5\x8c\x70\x3f\xc4\x99\x6f\xbe\xc7\x7c\xc2\x19\xa3\x3e\xae\xf5\xa9\x73\xf7\xc8\xd8\x32\x22\x29\x59\x46\x90\x72\x35\x50\xac\x8b\x36\x0b\x61\xc0\x0f\x8f\x97\x12\x0e\x17\xb0\x3b\xc8\xc4\x85\x98\xbc\x4b\x50\x9e\x0b\x2c\xe5\x46\x65\xb4\x99\xcd\x3b\x88\x81\xca\x6d\xdd\x49\xde\x25\x24\x7f\xd2\xb0\xe5\x86\x42\xa4\x14\xca\x1e\x6c\x02\x3a\xa2\xbd\x13\xf0\x42\xee\x02\x38\x7a\x92\x37\x5c\xbb\x66\xd9\xc4\xae\xc2\x81\x33\xad\xb8\x56\xeb\x3f\x6f\xaa\x82\xd9\x88\x6a\x44\x35\x6e\xff\x6c\xd3\x56\x44\xef\xf4\x76\x38\xef\x0e\x37\x19\x25\x6b\x15\x64\x2b\xea\xd9\xd7\xc1\x56\xce\xff\x01\x00\x00\xff\xff\xcf\x73\x62\x17\x89\x12\x00\x00"), + 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, 17, 3, 0, 0, 437347149, time.UTC), - uncompressedSize: 4726, + modTime: time.Date(2024, 5, 21, 1, 33, 12, 230546350, time.UTC), + uncompressedSize: 4720, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x58\x6d\x6f\xdb\x36\x10\xfe\xee\x5f\x71\x13\xf6\xa1\x2d\x16\xd5\xb1\xf3\xb6\x01\xc1\x90\xa5\xc3\x16\x60\x2b\x82\x60\xc1\x80\x15\x83\xc0\x48\x27\x87\x30\x25\x72\x7c\x51\xd2\x06\xfe\xef\x03\x45\x52\xb6\x64\xc9\x76\xdc\x04\x28\x8a\x02\xd4\xf1\xee\x79\xee\x8e\x3c\xde\x39\x1a\xa5\x24\x39\x97\x05\x3c\x8d\x00\x24\xfe\x67\xa8\xc4\x2c\x11\x92\x57\x34\x43\xa9\x6a\x31\x00\x17\x58\x2a\x4d\xd2\x39\x9c\x7b\x09\x80\xe2\x46\xa6\x08\xe7\x10\x35\x20\x07\xc1\xee\xa0\x31\x78\xdf\xac\x22\x6f\x57\xa1\x54\x94\x97\xd6\xf0\x30\x3e\x9e\xc4\x87\x6e\x63\x31\xb2\xff\x17\xa3\x51\xc0\x80\x68\x69\x5a\x93\x1a\x85\x32\x29\x49\x81\x00\xd6\xf8\xe9\x29\xbe\x66\x44\x5b\xde\xf8\x56\xa1\xb4\x3b\x8b\x85\x05\x13\x44\xa9\x07\x2e\x33\x58\x57\xbc\xf6\x5b\x4e\x51\x63\x49\x4a\xed\x30\x3b\x8a\x7f\xb9\xad\x8f\x0d\x28\x31\xfa\x3e\x31\x92\xf5\x80\x5e\xd8\xad\xdb\x9b\x3f\x9c\xa2\xc4\x99\x0d\x0f\x7a\x14\x6f\xea\x2d\xab\xb6\x18\x8d\x2a\x22\x29\xb9\x63\x08\x51\xca\x8c\xd2\x28\x13\x9a\xb9\x40\xf5\x67\x81\xce\x5a\x69\x49\xcb\xd9\x08\x20\xc3\x9c\x18\xa6\x3d\xe0\xa5\x33\xb8\xfa\xb0\x06\x45\x6d\xc2\xca\x14\x93\x94\x9b\x52\x3b\xb8\xb6\xed\xdf\x5c\xce\x51\xc6\x97\x76\x7f\xd8\xfc\x9e\x2b\x6d\xd3\xd2\x75\x88\x51\xa5\xdf\x38\xaf\xde\xb6\xa0\x97\xc8\xbf\x7b\xd3\xc5\x62\xc8\x35\x61\xf6\x80\xbd\xbc\xbe\x1d\x44\x94\xa4\xd8\x03\xf1\xe6\xe2\xcf\x41\xc4\x8c\xaa\xf9\x1e\x90\x1f\xa8\x9a\x0f\x62\x72\x45\x0b\x32\xc3\x1d\xcf\xb8\xb9\x34\xbf\xb1\xda\x3a\xdc\xc4\x16\x36\xa9\x08\x65\xe4\x8e\x32\xaa\x3f\x27\x5f\x78\xf9\x6c\xf0\x8b\x55\x80\x7f\x78\x89\xc3\x57\xc2\x96\x5f\x46\x34\xd9\x23\x2d\xbf\x70\xae\x2f\x79\x99\xd3\xd9\x7a\x72\xb4\xad\x5c\x96\x94\xa8\x9f\xeb\xfb\x55\xb0\xfd\x88\xfa\x81\xcb\xf9\xb0\xeb\x54\xec\xe1\xf4\xd5\x75\xd7\x59\x7c\xdc\xdf\xd9\x5f\x1f\x7b\x9d\x95\xe8\x9f\xd1\xe5\x63\x97\xa4\xbc\x10\x46\x63\x92\x33\x52\x71\x99\x54\x93\x08\x22\xb7\x76\xa4\x75\x69\xfb\xe7\xa5\x22\x32\x6e\xd7\xfc\x08\xc0\xbf\x91\xeb\x0a\xa1\xaa\x3f\xd5\x9a\x31\x2d\x33\x7c\xfc\x77\x04\x50\xa5\xc2\xa8\x5e\x44\x61\xba\xba\x92\x14\xd0\x0b\x2e\x49\xd1\xd5\xb5\x55\xd4\xab\x6b\x37\xba\xca\x54\x25\xc2\xdc\x31\x9a\xd6\x2d\x45\x1a\x1c\x4c\xd0\x1d\xe3\xe9\x5c\x69\x2e\xc9\x0c\x93\x8a\x33\x53\x60\x52\x4d\x23\x88\xdc\x7a\x35\x4b\x1b\x33\xb4\x63\x76\x14\xfd\x82\x3b\x44\xb0\xe5\x34\x15\xa6\x33\xc9\x8d\x70\xe7\x19\xbe\x9c\xaf\xcb\x03\xab\x5b\xc6\xf7\x4f\x96\x6a\xd9\x15\x16\x07\x0f\xf5\x95\x8c\xea\xeb\xa5\x52\x49\x85\xf6\x1d\x34\xe0\x40\xce\x25\xcc\xcf\x14\x04\x4d\x7b\x52\x86\xa1\xef\xd6\xb9\xe4\x45\x22\xb8\xd4\x35\xc1\x64\x52\x0b\x35\x0f\xa2\x15\x21\x15\xb6\xf9\x6b\x9e\x72\x56\x9f\x43\x2a\x5c\x7b\x4e\x69\x26\x57\x5c\x1c\xc7\xf5\xbf\xf7\xe3\xa8\x6e\xdb\x9b\xd8\x0e\x0e\x7b\xd8\xbc\xb0\xc3\x46\xd3\xe2\xab\xe9\xce\xc6\x3d\x74\x5e\xf8\xf2\xc1\x1d\x1d\x4d\x7b\xe8\x82\xf4\xe5\xf9\x26\xd3\xd3\x1f\xfb\x0e\x6f\xfa\x6a\x11\x1e\xf6\x12\x06\xe9\xcb\xf3\x9d\xf4\xa7\xf4\xe4\xf5\x72\x7a\x38\x9e\x1c\x9d\xf5\xc5\xd8\xc8\x5f\x85\xf3\x78\xdc\xcf\x79\xfc\x5a\x27\x39\x1d\x8f\xc7\x7d\x9c\xd3\xc9\xe9\xc9\xe9\xb7\xc2\x69\xb2\x9d\x38\xb7\x3c\xb6\xcd\x33\x5d\x3f\xb6\xe1\xab\xdb\x3e\x01\xfa\x3b\xd9\x7a\x1f\x1d\xd2\x1c\x6a\x19\xf5\xa0\x97\xb4\xec\x3b\x96\x7e\x18\x1c\x01\xf8\x36\xdf\xee\x01\xbb\x35\x26\x4c\x8d\xb4\x83\x5b\xdd\x02\x94\xb3\xfc\xb4\xb1\xf5\xc4\x61\x1d\x5b\x40\x0b\xb2\x36\x42\x06\xfa\xb5\x8d\xf0\x13\xcc\x0e\x81\xab\x19\xd1\x58\x08\x46\x34\xe6\x94\xe1\x9b\x96\xe3\x61\x64\x6c\x39\xfe\x03\x3c\x41\x88\x68\xa7\x48\x61\xf1\xd6\xde\xb1\xd2\x0d\x4e\xfe\x9a\xf5\xa5\x6b\x39\x9d\xb9\x9b\x48\x1f\x31\x4b\xa8\x48\xaa\xa3\x2e\x0f\x15\x6d\x86\xef\xce\x21\x2a\x0d\x63\x11\xfc\xbc\x59\xf1\x27\xb0\x6a\x9b\xae\xa0\x77\x93\x96\xb3\x24\x67\x9c\x68\x5a\xce\xa8\x08\x43\x9c\xfd\x16\x3b\xcc\x27\x82\x73\x16\xe2\x5a\x9d\x3a\xb7\x8f\x8c\x0d\x23\x51\x8a\xa7\x94\x68\x5f\x03\xf9\xaa\x68\xbd\x10\x06\xfc\x08\x78\x09\x15\x70\x0e\xdb\x83\x8c\x7d\x88\xf1\xbb\x98\x64\x99\x44\xa5\xd6\x2a\xa3\xc9\x6c\xd6\x42\xec\xa9\xdc\xc6\x9d\xf8\x5d\x4c\xb3\x67\x0d\x5b\x7e\x28\x24\x5a\x93\xf4\xde\x25\xa0\x25\xda\x39\x01\x2f\xe4\x2e\x80\xa7\xa7\x59\xcd\xb5\x6d\x96\x8d\xdd\xaa\x3f\x70\x6e\xb4\x30\x7a\xf5\xe7\x4d\x99\x73\x17\x51\x45\x98\xc1\xe6\x6f\x34\x4d\x45\x74\x4e\x6f\x8b\xf3\xfe\x70\xe3\x71\xbc\x52\x41\xae\xa2\xbe\xfa\x3a\xb8\xca\xf9\x3f\x00\x00\xff\xff\xd9\x52\x7c\x74\x76\x12\x00\x00"), + 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/terraform/nestos/libvirt": &vfsgen۰DirInfo{ name: "libvirt", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/terraform/nestos/libvirt/master.tf.template": &vfsgen۰CompressedFileInfo{ name: "master.tf.template", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), - uncompressedSize: 3234, + modTime: time.Date(2024, 5, 21, 1, 34, 59, 289979233, 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\x23\xc4\x96\x3c\x49\x76\x97\x05\xfe\xdf\x07\xca\x92\x7f\x24\x76\x2f\x97\x02\x8d\x6d\x99\xfc\xf8\x89\xe4\x47\xd9\xa2\xd6\x7c\xab\x74\x09\xc7\x08\x40\xe3\x3f\xb5\xd0\x98\x25\x95\x56\x8d\xc8\x50\x1b\xb7\x0c\x50\x88\x97\x46\x68\x0b\x2b\xff\x0c\x60\x54\xad\x53\x84\x15\xb0\xac\xe4\x69\x23\x52\xae\xef\xbc\x15\xf3\x26\x0d\x6a\x23\x94\x24\x9b\xfb\xf8\xa7\xf8\xc7\x6e\xbd\x8d\xe8\xbf\x8d\xa2\x10\x03\x58\xf0\x73\xe0\xb5\x16\xe4\x71\x3c\xc6\x8f\x05\xb7\x44\x2d\xfe\xf4\xb4\x69\x5b\x46\x3e\x0d\xd7\x82\xbf\x14\x08\x2c\x2d\x6a\x63\x51\x27\x22\xeb\xdc\xec\xa1\x42\x82\x5f\x81\xb1\x5a\xc8\x3c\x02\xc8\x70\xcb\xeb\xc2\x7a\xb4\x75\xe7\xb0\x79\x38\x83\x12\xd2\x58\x2e\x53\x4c\x52\x55\x4b\x7b\x21\xdc\x47\x4e\x68\xf1\x9a\x5c\x96\x11\x77\xca\x58\xc9\x4b\x3c\x05\x2d\x84\xb1\xef\x3a\xe4\xf7\x13\xe8\x01\xf9\x0f\xef\xda\xb6\x0b\xd8\xa2\xba\x02\x75\xf3\x78\x8a\xd7\x27\xb2\x6a\x3e\x24\xa9\xc8\xf4\x85\x09\xe8\xab\xb3\xde\x3c\x3c\x2d\x97\x87\x50\x73\x6e\xf1\x95\x1f\xbe\x16\xf8\xf7\xce\xed\x8d\x7a\x55\xf5\x15\x29\x58\x3f\x7e\x5a\xcc\xa9\xe6\xe5\x15\x88\x4f\xbf\x7e\x5c\x44\xcc\x84\xd9\x5f\x01\xf9\x20\xcc\x7e\xb9\xf2\xb9\xbc\x02\xf2\x37\xa5\xec\x5a\xc9\xad\xc8\x3b\x60\x8d\x5e\xc3\x41\x7f\x49\xa5\x54\xc1\x80\x75\x17\xc2\xa7\xfe\xa3\xaa\x7c\x7b\x6c\xb8\x8e\x07\xc9\xb5\xb7\xce\x26\x30\xa0\x21\x20\x34\x3d\x56\xdc\xee\xe8\xf1\xae\xe9\xc6\x41\x18\x09\x77\xa2\xe4\x39\x9a\xbb\x33\x20\x36\xcf\xa4\x51\x45\x4d\xaa\x61\xe1\xa6\x67\x03\xf3\x7c\xbc\x1d\x51\x50\xaa\xf0\x29\x19\x76\x15\xbb\x1f\x02\x88\xc6\xa3\x6b\xdc\x6d\x7f\xfe\xb5\x21\x8e\xc9\x23\xb7\xbb\xf6\x8b\xbc\x86\xb2\xba\xa1\x01\xfd\xdf\x0a\x88\xda\x74\xa4\x0c\xdc\x07\x2b\xbf\x87\xb3\x49\xf1\xd9\x79\xc4\x42\x66\xf8\xef\x73\x7b\xeb\xe2\x44\x00\x2f\xdc\xa0\x8f\x9e\x88\x6c\xb4\xbb\x6e\x2d\xf6\x17\x91\x0d\x19\x18\x62\x2d\x67\x42\xfc\x37\x65\x35\xa1\x44\xb1\x27\x74\xe0\x06\xbe\xbf\xff\xe1\xc3\xf4\x32\x9f\x28\x91\x4b\x61\x85\x92\x0c\xd8\x70\x3b\x4e\xd7\x17\xf2\x74\x71\x82\x7a\xf4\xd1\xc6\xdf\xd8\x71\xaa\xa4\x45\x49\xc2\xb0\x58\x56\x05\xb7\xb8\x15\x05\xbe\x9b\x44\x12\xb9\x9c\x04\xf9\x0e\x8e\x10\xa2\x9f\xf2\x9e\x65\x05\xed\xfb\xf9\xac\x48\xb4\xaf\x4a\xef\x19\xb0\xfe\xee\x38\x69\x8e\xd9\xde\x96\xe8\x8e\xd4\x52\x65\x83\x95\xe4\x6e\x2d\x53\x25\x17\x72\xc9\x33\x2e\x54\xca\x9d\x4c\x79\x96\x69\x34\x06\x0d\xac\xe0\xf3\xc4\x2a\x4c\xfd\xe7\x88\xe0\x76\x69\xe5\x4f\x78\x94\x34\x74\xa8\xd3\xac\xae\xd1\x9d\xd9\x64\x20\xcd\xc9\x7b\x17\xda\x9b\x00\xb8\x80\x89\x92\xc5\xe1\xc4\x51\xab\xda\x62\xf0\xa5\x78\x43\xbf\x9d\x51\x71\x36\xfe\xcc\x98\xb3\xf1\xaf\x02\x34\xaf\xad\x32\x96\xbb\xaf\x13\x17\x72\x36\xf5\x5d\xa6\x5c\xe6\x8d\x55\x66\x56\xbb\x17\x8a\xf7\xa2\x1e\x20\xf4\xaa\xf6\x1b\x76\xa5\x5b\x01\x23\xcb\xdb\x8a\x1b\x63\x77\x5a\xd5\xf9\x8e\x45\xdd\xf7\x50\x43\xa6\x6f\xf0\xa8\xea\x53\xec\x12\x4b\xa5\x0f\x8b\x1e\x9a\x97\x67\x6c\x94\x46\x65\x7a\x61\x8e\x44\x12\x96\xe2\xfe\xe6\x26\x16\xd9\x59\x44\x9e\xee\x84\xc4\xf1\x08\x73\x67\x8b\x5b\xfd\xfb\x50\x21\x0d\xcd\x71\x35\x82\x99\x6f\x83\x70\x56\x8d\xfc\xf7\x4d\xc9\x5c\x57\x09\xb3\xf7\x99\x7a\x63\xc4\x91\xd5\x2c\x33\xd7\x05\x5e\x50\x89\x90\x16\xf5\x96\xa7\xe8\x01\xc3\x7a\x7f\x78\x9c\x68\x31\xee\xaf\xdd\x80\x80\x41\xea\x5f\x55\xec\xb1\xc6\xe6\xfc\x44\x35\x1d\x11\xdf\x90\x88\xeb\xa2\x60\xf0\x4b\xa7\xc8\x25\xcb\x67\xf8\x19\xc8\xd0\xc5\x78\xe5\xc2\x26\x5b\xa5\x93\x02\xb9\xc1\x13\x8d\xe5\x9a\x57\x3b\x91\x06\x95\x8d\x13\xbe\x02\xd6\xc8\x94\xf9\x6f\x79\x63\x51\x26\xe1\xe4\xf6\xb4\x59\x40\x49\x95\x34\xaa\xc0\x79\x90\xca\x1e\x3a\x10\xcb\x75\x8e\x34\x5f\x9d\xec\xd8\x3d\x0b\x5f\xf5\xaa\xb6\x55\x6d\x81\x91\x52\x3b\x91\x35\xbc\xa8\x71\x94\xf8\x4e\x89\x71\xa7\xc3\xf8\x26\x3e\xab\x5c\x7c\x1f\xf7\xb9\x8c\xda\xff\x03\x00\x00\xff\xff\x45\x37\xa0\x32\xa2\x0c\x00\x00"), + 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, 17, 3, 0, 0, 437347149, time.UTC), - uncompressedSize: 2533, + modTime: time.Date(2024, 5, 21, 1, 35, 7, 503089157, 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\xe6\x8f\xca\x6f\x92\x2d\xcf\x30\x3b\xc8\xd9\xfb\x1c\x26\x9f\x15\xc4\xc2\xf3\x3e\x38\xf0\x9f\xc6\x25\x8e\x47\x9e\xff\xd8\xe7\x48\xd2\x25\xfe\xf3\xa9\xbb\xed\x6b\x65\x00\x4f\xca\x61\x62\x90\xf7\x68\x97\x69\xb1\x50\x71\x51\x15\xfa\xf7\x25\xbf\x19\xb9\xc8\x62\x46\x0c\x6e\xe0\xbb\xbb\xef\xdf\xcc\x7f\x96\x65\xa3\x4a\x93\x27\xa3\x05\x88\xc3\xe3\x54\xbc\xff\xd1\xec\x62\xa9\xf6\xe8\x93\xe9\x9f\x9d\x75\x61\xb4\x47\x1d\x0d\xea\xb1\xb1\xb5\xf2\xb8\xa6\x1a\x5f\xcd\x6a\x51\xa5\x67\x65\xbe\x81\x1d\x8c\xf5\x5f\x32\x5f\xe4\x05\xdd\xeb\x65\x5d\x4a\xd3\x28\x8a\xaa\x68\x74\xde\xb8\x65\x43\x5d\xe8\xa7\x4b\x88\x44\x74\x1b\xd2\xb1\xd3\x98\xb2\xb7\x50\x8c\xbc\xb5\xca\x39\xbf\x61\x13\xaa\x8d\xc8\x86\x73\xa5\x8d\xa1\x67\x78\xd8\xf0\x12\xbb\xc1\xc6\xf0\xf3\xc9\x0c\x56\xcd\x11\x1b\xc3\x68\xdc\xde\x1f\xfd\x06\x32\xb7\x8c\xdc\x3f\xdc\x48\x2a\x8f\x2a\xaa\x62\x43\x1a\xa7\x0e\xdf\xed\xe4\xbb\x61\xf4\xcf\x67\x8b\xb1\x93\x01\x54\xf0\xc6\x79\xc5\x7e\x1f\xe6\x39\xe0\x64\xe3\x9a\xe4\x6f\xdb\x46\x64\x71\xeb\x22\xb7\x4d\x4a\xa5\x9e\xa3\x72\xc2\x6f\x18\x93\x31\x6a\x91\x59\x17\x31\x34\xfa\xcf\x86\xb7\x39\x69\x8f\xbc\x56\x05\x26\xc0\x71\xfc\xdc\x9e\xa6\x31\x9d\xfd\x7b\xab\x7d\xd1\x3a\x03\xa8\xb2\x64\x74\x0e\xdd\x62\x1e\xd9\xb9\x45\xbf\x5a\x81\xd0\xa1\xae\x05\xfc\x0c\x1f\xcf\x45\x7e\x82\x9f\x20\x06\xf6\x35\x3e\x2b\xf2\xf9\xda\x70\x5e\xa3\x72\x78\xd0\xb5\x9f\x7d\xc5\xca\x6e\xa8\x18\xaf\x3d\x53\xad\x57\x20\x5a\x5d\x88\x74\x1d\x72\x1e\x75\xde\xbf\x5e\x81\x48\xb4\xc5\x88\x52\x18\xed\x4c\x8d\xcb\x20\xd6\x3f\x0f\x20\x5e\x71\x85\x3e\xb7\xa6\xbf\x57\x89\x3b\x31\x5e\x8c\x4c\xf0\x36\x78\x10\x64\xdb\x37\x43\x7f\xb5\xaa\x0e\x38\x59\xc9\xa1\x09\xe5\xd0\x82\xf2\x46\x1e\x2d\x9a\xbc\x93\x7b\x2d\xb3\xee\xbf\x00\x00\x00\xff\xff\xf8\x34\xd9\x02\xe5\x09\x00\x00"), + 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, 17, 3, 0, 0, 437347149, time.UTC), + modTime: time.Date(2024, 5, 16, 1, 0, 55, 322036308, time.UTC), }, "/terraform/nestos/openstack/master.tf.template": &vfsgen۰CompressedFileInfo{ name: "master.tf.template", - modTime: time.Date(2024, 5, 17, 3, 0, 0, 437347149, time.UTC), - uncompressedSize: 4745, + modTime: time.Date(2024, 5, 21, 1, 32, 20, 949861195, 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\x44\x39\x84\x29\x91\xe3\x8b\x9a\xd6\xf0\x7f\x1f\x28\x92\xb2\x25\x53\xb6\xe3\x24\x40\x51\x14\xa0\x8e\x77\xcf\x73\x77\xe4\xf1\xce\x51\x58\x08\x54\x30\x51\xc2\x22\x02\x10\xf8\x3f\x4d\x04\xce\x53\x2e\x58\x4d\x72\x2c\x64\x23\x06\x60\x1c\x57\x52\xa1\x6c\x0e\x17\x4e\x02\x20\x99\x16\x19\x86\x0b\x88\x5b\x90\x23\x6f\x77\xd4\x1a\xbc\x6f\x57\xb1\xb3\xab\xb1\x90\x84\x55\xc6\x70\x9c\x9c\x4c\x92\xb1\xdd\x58\x46\xe6\xff\x32\x8a\x3c\x06\xc4\x2b\xd3\x86\x54\x4b\x2c\xd2\x0a\x95\x18\xc0\x18\x2f\x16\xc9\x0d\x45\xca\xf0\x26\x77\x12\x0b\xb3\xb3\x5c\x1a\x30\x8e\xa4\xfc\xc2\x44\x0e\x9b\x8a\x37\x6e\xcb\x2a\x2a\x5c\xa1\x4a\x59\xcc\x9e\xe2\xdf\x76\xeb\x53\x0b\x8a\xb4\x7a\x48\xb5\xa0\x01\xd0\x4b\xb3\x75\x77\xfb\x97\x55\x14\x78\x66\xc2\x83\x80\xe2\x6d\xb3\x65\xd4\x96\x51\x54\x23\x41\xd0\x3d\xc5\x10\x67\x54\x4b\x85\x45\x4a\x72\x1b\xa8\xfa\xca\xb1\xb5\x96\x4a\x90\x6a\x16\x01\xe4\xb8\x40\x9a\x2a\x07\x78\x65\x0d\xae\x3f\x6c\x40\x11\x93\xb0\x2a\xc3\x69\xc6\x74\xa5\xf6\x84\xfb\x88\x0c\x5a\x72\x65\x4c\x86\x11\x1f\x98\x54\x26\x53\x7d\x50\x4a\xa4\x7a\x63\x91\xdf\x76\xa0\x57\xc8\x7f\x3a\xd3\xe5\x72\xc8\x5b\xae\x0f\x80\xbd\xba\xb9\x1b\x44\x14\xa8\x3c\x00\xf1\xf6\xf2\xe3\x20\x62\x4e\xe4\xfc\x00\xc8\x0f\x44\xce\x07\x31\x99\x24\x25\x9a\xe1\x3d\xcf\xa9\xbd\x47\x7f\xd0\xc6\xda\x5f\xce\x0e\x36\xaa\x11\xa1\xe8\x9e\x50\xa2\xbe\xa6\xdf\x58\xf5\x64\xf0\xcb\x75\x80\x7f\x58\x85\x87\xaf\x84\xa9\xc8\x1c\x29\x74\x40\x5a\x7e\x63\x4c\x5d\xb1\xaa\x20\xb3\xcd\xe4\x28\x53\xcc\x34\xad\xb0\x7a\xaa\xef\xd7\xde\xf6\x13\x56\x5f\x98\x98\x0f\xbb\x4e\xf8\x01\x4e\x5f\xdf\xf4\x9d\xc5\x8f\x87\x3b\xfb\xfb\x63\xd0\x59\x81\xdd\xcb\xba\x7a\xff\xd2\x8c\x95\x5c\x2b\x9c\x16\x14\xd5\x4c\xa4\xf5\x24\x86\xd8\xae\x2d\x69\x53\xed\xee\xc5\xa9\x91\x48\xba\xcf\x40\x04\xe0\x9e\xcd\x4d\x05\x5f\xd5\x9f\x1b\xcd\x84\x54\x39\x7e\xfc\x37\x02\xa8\x33\xae\x65\x10\x91\xeb\xbe\xae\x40\x25\x04\xc1\x05\x2a\xfb\xba\xa6\x8a\x82\xba\x66\xa3\xaf\x4c\x64\xca\xf5\x3d\x25\x59\xd3\x65\x84\xc6\x83\x09\xba\xa7\x2c\x9b\x4b\xc5\x04\x9a\xe1\xb4\x66\x54\x97\x38\xad\xa7\x31\xc4\x76\xbd\x9e\xa5\xad\x19\xda\x33\x3b\x92\x7c\xc3\x7b\x44\xb0\xe3\x34\x25\xce\x66\x82\x69\x6e\xcf\xd3\x7f\x59\x5f\x57\x07\xd6\x74\x91\x1f\x17\x86\x6a\xd5\x28\x96\x47\x65\x73\x25\xe3\xe6\x7a\xc9\x4c\x10\xae\x5c\x53\xf5\x38\x50\x30\x01\xf3\x73\x09\x5e\xd3\x9c\x94\xa6\xd8\x35\xf0\x42\xb0\x32\xe5\x4c\xa8\x86\x60\x32\x69\x84\x8a\x79\xd1\x9a\x90\x70\x33\x0f\x28\x96\x31\xda\x9c\x43\xc6\x6d\xc7\xce\x48\x2e\xd6\x5c\x1c\x25\xcd\xbf\xf7\xa3\xb8\xe9\xe4\xdb\xd8\x8e\xc6\x01\x36\x27\xec\xb1\x91\xac\x7c\x36\xdd\xf9\x28\x40\xe7\x84\x2f\x1f\xdc\xf1\xf1\x34\x40\xe7\xa5\x2f\xcf\x37\x99\x9e\xfd\x1c\x3a\xbc\xe9\xab\x45\x38\x0e\x12\x7a\xe9\xcb\xf3\x9d\x86\x53\x7a\xfa\x7a\x39\x1d\x8f\x26\xc7\xe7\xa1\x18\x5b\xf9\xab\x70\x9e\x8c\xc2\x9c\x27\xaf\x75\x92\xd3\xd1\x68\x14\xe2\x9c\x4e\xce\x4e\xcf\xbe\x17\x4e\x9d\xef\xc5\xb9\xe3\xb1\x6d\x9f\xe9\xe6\xb1\xf5\x5f\xfd\xf6\x09\x10\xee\x64\x9b\x7d\x74\x48\x73\xa8\x65\x34\x83\x5e\xda\xb1\xef\x59\xba\x61\x30\x02\x70\x6d\xbe\xdb\x03\xf6\x6b\x4c\x38\xd3\xc2\x0c\x6e\x4d\x0b\x90\xd6\xf2\xf3\xd6\xd6\x93\xf8\x75\x62\x00\x0d\xc8\xc6\x08\xe9\xe9\x37\x36\xfc\xaf\x32\x33\x04\xae\x67\x44\xe1\x92\x53\xa4\x70\x41\x28\x7e\xd3\x71\xdc\x8f\x8c\x1d\xc7\x7f\x82\x05\xf8\x88\xf6\x8a\x14\x96\x6f\xcd\x1d\xab\xec\xe0\xe4\xae\x59\x28\x5d\xab\xe9\xcc\xde\x44\xf2\x88\xf3\x94\xf0\xb4\x3e\xee\xf3\x10\xde\x65\xf8\xe1\x02\xe2\x4a\x53\x1a\xc3\xaf\xdb\x15\x7f\x01\xa3\xb6\xed\x0a\x3a\x37\x49\x35\x4b\x0b\xca\x90\x22\xd5\x8c\x70\x3f\xc4\x99\x6f\xbe\xc7\x7c\xc2\x19\xa3\x3e\xae\xf5\xa9\x73\xf7\xc8\xd8\x32\x22\x29\x59\x46\x90\x72\x35\x50\xac\x8b\x36\x0b\x61\xc0\x0f\x8f\x97\x12\x0e\x17\xb0\x3b\xc8\xc4\x85\x98\xbc\x4b\x50\x9e\x0b\x2c\xe5\x46\x65\xb4\x99\xcd\x3b\x88\x81\xca\x6d\xdd\x49\xde\x25\x24\x7f\xd2\xb0\xe5\x86\x42\xa4\x14\xca\x1e\x6c\x02\x3a\xa2\xbd\x13\xf0\x42\xee\x02\x38\x7a\x92\x37\x5c\xbb\x66\xd9\xc4\xae\xc2\x81\x33\xad\xb8\x56\xeb\x3f\x6f\xaa\x82\xd9\x88\x6a\x44\x35\x6e\xff\x6c\xd3\x56\x44\xef\xf4\x76\x38\xef\x0e\x37\x19\x25\x6b\x15\x64\x2b\xea\xd9\xd7\xc1\x56\xce\xff\x01\x00\x00\xff\xff\xcf\x73\x62\x17\x89\x12\x00\x00"), + 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, 17, 3, 0, 0, 437347149, time.UTC), - uncompressedSize: 4726, + modTime: time.Date(2024, 5, 21, 1, 33, 46, 760008493, time.UTC), + uncompressedSize: 4720, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x02\xff\xcc\x58\x6d\x6f\xdb\x36\x10\xfe\xee\x5f\x71\x13\xf6\xa1\x2d\x16\xd5\xb1\xf3\xb6\x01\xc1\x90\xa5\xc3\x16\x60\x2b\x82\x60\xc1\x80\x15\x83\xc0\x48\x27\x87\x30\x25\x72\x7c\x51\xd2\x06\xfe\xef\x03\x45\x52\xb6\x64\xc9\x76\xdc\x04\x28\x8a\x02\xd4\xf1\xee\x79\xee\x8e\x3c\xde\x39\x1a\xa5\x24\x39\x97\x05\x3c\x8d\x00\x24\xfe\x67\xa8\xc4\x2c\x11\x92\x57\x34\x43\xa9\x6a\x31\x00\x17\x58\x2a\x4d\xd2\x39\x9c\x7b\x09\x80\xe2\x46\xa6\x08\xe7\x10\x35\x20\x07\xc1\xee\xa0\x31\x78\xdf\xac\x22\x6f\x57\xa1\x54\x94\x97\xd6\xf0\x30\x3e\x9e\xc4\x87\x6e\x63\x31\xb2\xff\x17\xa3\x51\xc0\x80\x68\x69\x5a\x93\x1a\x85\x32\x29\x49\x81\x00\xd6\xf8\xe9\x29\xbe\x66\x44\x5b\xde\xf8\x56\xa1\xb4\x3b\x8b\x85\x05\x13\x44\xa9\x07\x2e\x33\x58\x57\xbc\xf6\x5b\x4e\x51\x63\x49\x4a\xed\x30\x3b\x8a\x7f\xb9\xad\x8f\x0d\x28\x31\xfa\x3e\x31\x92\xf5\x80\x5e\xd8\xad\xdb\x9b\x3f\x9c\xa2\xc4\x99\x0d\x0f\x7a\x14\x6f\xea\x2d\xab\xb6\x18\x8d\x2a\x22\x29\xb9\x63\x08\x51\xca\x8c\xd2\x28\x13\x9a\xb9\x40\xf5\x67\x81\xce\x5a\x69\x49\xcb\xd9\x08\x20\xc3\x9c\x18\xa6\x3d\xe0\xa5\x33\xb8\xfa\xb0\x06\x45\x6d\xc2\xca\x14\x93\x94\x9b\x52\x3b\xb8\xb6\xed\xdf\x5c\xce\x51\xc6\x97\x76\x7f\xd8\xfc\x9e\x2b\x6d\xd3\xd2\x75\x88\x51\xa5\xdf\x38\xaf\xde\xb6\xa0\x97\xc8\xbf\x7b\xd3\xc5\x62\xc8\x35\x61\xf6\x80\xbd\xbc\xbe\x1d\x44\x94\xa4\xd8\x03\xf1\xe6\xe2\xcf\x41\xc4\x8c\xaa\xf9\x1e\x90\x1f\xa8\x9a\x0f\x62\x72\x45\x0b\x32\xc3\x1d\xcf\xb8\xb9\x34\xbf\xb1\xda\x3a\xdc\xc4\x16\x36\xa9\x08\x65\xe4\x8e\x32\xaa\x3f\x27\x5f\x78\xf9\x6c\xf0\x8b\x55\x80\x7f\x78\x89\xc3\x57\xc2\x96\x5f\x46\x34\xd9\x23\x2d\xbf\x70\xae\x2f\x79\x99\xd3\xd9\x7a\x72\xb4\xad\x5c\x96\x94\xa8\x9f\xeb\xfb\x55\xb0\xfd\x88\xfa\x81\xcb\xf9\xb0\xeb\x54\xec\xe1\xf4\xd5\x75\xd7\x59\x7c\xdc\xdf\xd9\x5f\x1f\x7b\x9d\x95\xe8\x9f\xd1\xe5\x63\x97\xa4\xbc\x10\x46\x63\x92\x33\x52\x71\x99\x54\x93\x08\x22\xb7\x76\xa4\x75\x69\xfb\xe7\xa5\x22\x32\x6e\xd7\xfc\x08\xc0\xbf\x91\xeb\x0a\xa1\xaa\x3f\xd5\x9a\x31\x2d\x33\x7c\xfc\x77\x04\x50\xa5\xc2\xa8\x5e\x44\x61\xba\xba\x92\x14\xd0\x0b\x2e\x49\xd1\xd5\xb5\x55\xd4\xab\x6b\x37\xba\xca\x54\x25\xc2\xdc\x31\x9a\xd6\x2d\x45\x1a\x1c\x4c\xd0\x1d\xe3\xe9\x5c\x69\x2e\xc9\x0c\x93\x8a\x33\x53\x60\x52\x4d\x23\x88\xdc\x7a\x35\x4b\x1b\x33\xb4\x63\x76\x14\xfd\x82\x3b\x44\xb0\xe5\x34\x15\xa6\x33\xc9\x8d\x70\xe7\x19\xbe\x9c\xaf\xcb\x03\xab\x5b\xc6\xf7\x4f\x96\x6a\xd9\x15\x16\x07\x0f\xf5\x95\x8c\xea\xeb\xa5\x52\x49\x85\xf6\x1d\x34\xe0\x40\xce\x25\xcc\xcf\x14\x04\x4d\x7b\x52\x86\xa1\xef\xd6\xb9\xe4\x45\x22\xb8\xd4\x35\xc1\x64\x52\x0b\x35\x0f\xa2\x15\x21\x15\xb6\xf9\x6b\x9e\x72\x56\x9f\x43\x2a\x5c\x7b\x4e\x69\x26\x57\x5c\x1c\xc7\xf5\xbf\xf7\xe3\xa8\x6e\xdb\x9b\xd8\x0e\x0e\x7b\xd8\xbc\xb0\xc3\x46\xd3\xe2\xab\xe9\xce\xc6\x3d\x74\x5e\xf8\xf2\xc1\x1d\x1d\x4d\x7b\xe8\x82\xf4\xe5\xf9\x26\xd3\xd3\x1f\xfb\x0e\x6f\xfa\x6a\x11\x1e\xf6\x12\x06\xe9\xcb\xf3\x9d\xf4\xa7\xf4\xe4\xf5\x72\x7a\x38\x9e\x1c\x9d\xf5\xc5\xd8\xc8\x5f\x85\xf3\x78\xdc\xcf\x79\xfc\x5a\x27\x39\x1d\x8f\xc7\x7d\x9c\xd3\xc9\xe9\xc9\xe9\xb7\xc2\x69\xb2\x9d\x38\xb7\x3c\xb6\xcd\x33\x5d\x3f\xb6\xe1\xab\xdb\x3e\x01\xfa\x3b\xd9\x7a\x1f\x1d\xd2\x1c\x6a\x19\xf5\xa0\x97\xb4\xec\x3b\x96\x7e\x18\x1c\x01\xf8\x36\xdf\xee\x01\xbb\x35\x26\x4c\x8d\xb4\x83\x5b\xdd\x02\x94\xb3\xfc\xb4\xb1\xf5\xc4\x61\x1d\x5b\x40\x0b\xb2\x36\x42\x06\xfa\xb5\x8d\xf0\x13\xcc\x0e\x81\xab\x19\xd1\x58\x08\x46\x34\xe6\x94\xe1\x9b\x96\xe3\x61\x64\x6c\x39\xfe\x03\x3c\x41\x88\x68\xa7\x48\x61\xf1\xd6\xde\xb1\xd2\x0d\x4e\xfe\x9a\xf5\xa5\x6b\x39\x9d\xb9\x9b\x48\x1f\x31\x4b\xa8\x48\xaa\xa3\x2e\x0f\x15\x6d\x86\xef\xce\x21\x2a\x0d\x63\x11\xfc\xbc\x59\xf1\x27\xb0\x6a\x9b\xae\xa0\x77\x93\x96\xb3\x24\x67\x9c\x68\x5a\xce\xa8\x08\x43\x9c\xfd\x16\x3b\xcc\x27\x82\x73\x16\xe2\x5a\x9d\x3a\xb7\x8f\x8c\x0d\x23\x51\x8a\xa7\x94\x68\x5f\x03\xf9\xaa\x68\xbd\x10\x06\xfc\x08\x78\x09\x15\x70\x0e\xdb\x83\x8c\x7d\x88\xf1\xbb\x98\x64\x99\x44\xa5\xd6\x2a\xa3\xc9\x6c\xd6\x42\xec\xa9\xdc\xc6\x9d\xf8\x5d\x4c\xb3\x67\x0d\x5b\x7e\x28\x24\x5a\x93\xf4\xde\x25\xa0\x25\xda\x39\x01\x2f\xe4\x2e\x80\xa7\xa7\x59\xcd\xb5\x6d\x96\x8d\xdd\xaa\x3f\x70\x6e\xb4\x30\x7a\xf5\xe7\x4d\x99\x73\x17\x51\x45\x98\xc1\xe6\x6f\x34\x4d\x45\x74\x4e\x6f\x8b\xf3\xfe\x70\xe3\x71\xbc\x52\x41\xae\xa2\xbe\xfa\x3a\xb8\xca\xf9\x3f\x00\x00\xff\xff\xd9\x52\x7c\x74\x76\x12\x00\x00"), + 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"), }, } fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ diff --git a/data/data/terraform/generalos/libvirt/master.tf.template b/data/data/terraform/generalos/libvirt/master.tf.template index 65054c54c1a394e1ebcaf853cb8eff209b4eadf5..559d2824973075c9223f649138386becf3f7ef39 100644 --- a/data/data/terraform/generalos/libvirt/master.tf.template +++ b/data/data/terraform/generalos/libvirt/master.tf.template @@ -70,7 +70,7 @@ resource "libvirt_pool" "pool" { resource "libvirt_volume" "volume" { name = "${var.cluster_id}-volume" pool = libvirt_pool.pool.name - source = "{{.Platform.OSImage_Path}}" + source = "{{.Platform.OSImage}}" } resource "libvirt_volume" "disk" { diff --git a/data/data/terraform/generalos/libvirt/worker.tf.template b/data/data/terraform/generalos/libvirt/worker.tf.template index e38dd579c56bfe320113ad8342e854c02dfb5bc3..f310a0d01a29a8cd0aec175a929b1deed47b93c4 100644 --- a/data/data/terraform/generalos/libvirt/worker.tf.template +++ b/data/data/terraform/generalos/libvirt/worker.tf.template @@ -53,7 +53,7 @@ variable "instance_cloudinit" { resource "libvirt_volume" "volume" { name = "${var.cluster_id}-volume" pool = "${var.cluster_id}-pool" - source = "{{.Platform.OSImage_Path}}" + source = "{{.Platform.OSImage}}" } resource "libvirt_volume" "disk" { diff --git a/data/data/terraform/generalos/openstack/master.tf.template b/data/data/terraform/generalos/openstack/master.tf.template index 4ff14371dc86a5047f835fa4397f79135717bf18..e58eebfed3b16e98be45eb84eba073b73240addb 100644 --- a/data/data/terraform/generalos/openstack/master.tf.template +++ b/data/data/terraform/generalos/openstack/master.tf.template @@ -10,8 +10,8 @@ terraform { provider "openstack" { user_name = "{{.Platform.Username}}" password = "{{.Platform.Password}}" - tenant_name = "{{.Platform.Tenant_Name}}" - auth_url = "{{.Platform.Auth_URL}}" + tenant_name = "{{.Platform.TenantName}}" + auth_url = "{{.Platform.AuthURL}}" region = "{{.Platform.Region}}" } @@ -47,12 +47,12 @@ variable "instance_disk" { variable "instance_osimage" { type = string - default = "{{.Platform.Glance_Name}}" + default = "{{.Platform.GlanceName}}" } variable "availability_zone" { type = string - default = "{{.Platform.Availability_Zone}}" + default = "{{.Platform.AvailabilityZone}}" } variable "instance_userdata" { @@ -62,7 +62,7 @@ variable "instance_userdata" { variable "internal_net" { type = string - default = "{{.Platform.Internal_Network}}" + default = "{{.Platform.InternalNetwork}}" } variable "instance_ip" { @@ -72,7 +72,7 @@ variable "instance_ip" { variable "external_net" { type = string - default = "{{.Platform.External_Network}}" + default = "{{.Platform.ExternalNetwork}}" } resource "openstack_compute_flavor_v2" "flavor" { diff --git a/data/data/terraform/generalos/openstack/worker.tf.template b/data/data/terraform/generalos/openstack/worker.tf.template index a86b1f83c35af54f1bdb595feabfb0b9999c4de2..f81322328467d59209fec40b564cae6de70e5f6f 100644 --- a/data/data/terraform/generalos/openstack/worker.tf.template +++ b/data/data/terraform/generalos/openstack/worker.tf.template @@ -10,8 +10,8 @@ terraform { provider "openstack" { user_name = "{{.Platform.Username}}" password = "{{.Platform.Password}}" - tenant_name = "{{.Platform.Tenant_Name}}" - auth_url = "{{.Platform.Auth_URL}}" + tenant_name = "{{.Platform.TenantName}}" + auth_url = "{{.Platform.AuthURL}}" region = "{{.Platform.Region}}" } @@ -46,12 +46,12 @@ variable "instance_disk" { variable "instance_osimage" { type = string - default = "{{.Platform.Glance_Name}}" + default = "{{.Platform.GlanceName}}" } variable "availability_zone" { type = string - default = "{{.Platform.Availability_Zone}}" + default = "{{.Platform.AvailabilityZone}}" } variable "instance_userdata" { @@ -61,7 +61,7 @@ variable "instance_userdata" { variable "internal_net" { type = string - default = "{{.Platform.Internal_Network}}" + default = "{{.Platform.InternalNetwork}}" } variable "instance_ip" { @@ -71,7 +71,7 @@ variable "instance_ip" { variable "external_net" { type = string - default = "{{.Platform.External_Network}}" + default = "{{.Platform.ExternalNetwork}}" } resource "openstack_compute_flavor_v2" "flavor" { diff --git a/data/data/terraform/nestos/libvirt/master.tf.template b/data/data/terraform/nestos/libvirt/master.tf.template index bcd05eb7c8b3cb59b1b3b2061dadcfb603272598..2f514ee4b3064a00a23a4a6826e5229d3752a10d 100644 --- a/data/data/terraform/nestos/libvirt/master.tf.template +++ b/data/data/terraform/nestos/libvirt/master.tf.template @@ -70,7 +70,7 @@ resource "libvirt_pool" "pool" { resource "libvirt_volume" "volume" { name = "${var.cluster_id}-volume" pool = libvirt_pool.pool.name - source = "{{.Platform.OSImage_Path}}" + source = "{{.Platform.OSImage}}" } resource "libvirt_volume" "disk" { diff --git a/data/data/terraform/nestos/libvirt/worker.tf.template b/data/data/terraform/nestos/libvirt/worker.tf.template index 4f6679a009f7fc72224c61cc086e1bef55aed940..d56edce0df600e8f57b01327e2477808cea39ee6 100644 --- a/data/data/terraform/nestos/libvirt/worker.tf.template +++ b/data/data/terraform/nestos/libvirt/worker.tf.template @@ -53,7 +53,7 @@ variable "instance_ign" { resource "libvirt_volume" "volume" { name = "${var.cluster_id}-volume" pool = "${var.cluster_id}-pool" - source = "{{.Platform.OSImage_Path}}" + source = "{{.Platform.OSImage}}" } resource "libvirt_volume" "disk" { diff --git a/data/data/terraform/nestos/openstack/master.tf.template b/data/data/terraform/nestos/openstack/master.tf.template index 4ff14371dc86a5047f835fa4397f79135717bf18..e58eebfed3b16e98be45eb84eba073b73240addb 100644 --- a/data/data/terraform/nestos/openstack/master.tf.template +++ b/data/data/terraform/nestos/openstack/master.tf.template @@ -10,8 +10,8 @@ terraform { provider "openstack" { user_name = "{{.Platform.Username}}" password = "{{.Platform.Password}}" - tenant_name = "{{.Platform.Tenant_Name}}" - auth_url = "{{.Platform.Auth_URL}}" + tenant_name = "{{.Platform.TenantName}}" + auth_url = "{{.Platform.AuthURL}}" region = "{{.Platform.Region}}" } @@ -47,12 +47,12 @@ variable "instance_disk" { variable "instance_osimage" { type = string - default = "{{.Platform.Glance_Name}}" + default = "{{.Platform.GlanceName}}" } variable "availability_zone" { type = string - default = "{{.Platform.Availability_Zone}}" + default = "{{.Platform.AvailabilityZone}}" } variable "instance_userdata" { @@ -62,7 +62,7 @@ variable "instance_userdata" { variable "internal_net" { type = string - default = "{{.Platform.Internal_Network}}" + default = "{{.Platform.InternalNetwork}}" } variable "instance_ip" { @@ -72,7 +72,7 @@ variable "instance_ip" { variable "external_net" { type = string - default = "{{.Platform.External_Network}}" + default = "{{.Platform.ExternalNetwork}}" } resource "openstack_compute_flavor_v2" "flavor" { diff --git a/data/data/terraform/nestos/openstack/worker.tf.template b/data/data/terraform/nestos/openstack/worker.tf.template index a86b1f83c35af54f1bdb595feabfb0b9999c4de2..f81322328467d59209fec40b564cae6de70e5f6f 100644 --- a/data/data/terraform/nestos/openstack/worker.tf.template +++ b/data/data/terraform/nestos/openstack/worker.tf.template @@ -10,8 +10,8 @@ terraform { provider "openstack" { user_name = "{{.Platform.Username}}" password = "{{.Platform.Password}}" - tenant_name = "{{.Platform.Tenant_Name}}" - auth_url = "{{.Platform.Auth_URL}}" + tenant_name = "{{.Platform.TenantName}}" + auth_url = "{{.Platform.AuthURL}}" region = "{{.Platform.Region}}" } @@ -46,12 +46,12 @@ variable "instance_disk" { variable "instance_osimage" { type = string - default = "{{.Platform.Glance_Name}}" + default = "{{.Platform.GlanceName}}" } variable "availability_zone" { type = string - default = "{{.Platform.Availability_Zone}}" + default = "{{.Platform.AvailabilityZone}}" } variable "instance_userdata" { @@ -61,7 +61,7 @@ variable "instance_userdata" { variable "internal_net" { type = string - default = "{{.Platform.Internal_Network}}" + default = "{{.Platform.InternalNetwork}}" } variable "instance_ip" { @@ -71,7 +71,7 @@ variable "instance_ip" { variable "external_net" { type = string - default = "{{.Platform.External_Network}}" + default = "{{.Platform.ExternalNetwork}}" } resource "openstack_compute_flavor_v2" "flavor" { diff --git a/pkg/cert/GenerateAllFiles.go b/pkg/cert/GenerateAllFiles.go index ec3530630ec360dfd0f23b7a4eb1f4792f0aa105..458fbb8632f08e39355172b934e9f06e600e3c02 100644 --- a/pkg/cert/GenerateAllFiles.go +++ b/pkg/cert/GenerateAllFiles.go @@ -75,8 +75,8 @@ func (cg *CertGenerator) GenerateAllFiles() error { /* **********生成root CA 证书和密钥********** */ - rootCACert, err := GenerateAllCA(clusterconfig.CertAsset.RootCaCertPath, - clusterconfig.CertAsset.RootCaKeyPath, "kubernetes", []string{"kubernetes"}) + rootCACert, err := GenerateAllCA(clusterconfig.CertAsset.RootCACertPath, + clusterconfig.CertAsset.RootCAKeyPath, "kubernetes", []string{"kubernetes"}) if err != nil { logrus.Errorf("Error generating root CA:%v", err) return err @@ -84,8 +84,8 @@ func (cg *CertGenerator) GenerateAllFiles() error { /*如果用户没有提供自定义路径,则将ca保存在以下目录; 如果用户提供了自定义路径,也保存一份在以下路径,并反存到配置文件中*/ - clusterconfig.CertAsset.RootCaCertPath = globalconfig.PersistDir + "/" + clusterID + "/pki/ca.crt" - clusterconfig.CertAsset.RootCaKeyPath = globalconfig.PersistDir + "/" + clusterID + "/pki/ca.key" + clusterconfig.CertAsset.RootCACertPath = globalconfig.PersistDir + "/" + clusterID + "/pki/ca.crt" + clusterconfig.CertAsset.RootCAKeyPath = globalconfig.PersistDir + "/" + clusterID + "/pki/ca.key" //保存root CA证书和密钥到宿主机 err = SaveFileToLocal(globalconfig.PersistDir+"/"+clusterID+"/pki/ca.crt", rootCACert.CertRaw) @@ -119,8 +119,8 @@ func (cg *CertGenerator) GenerateAllFiles() error { /* **********生成etcd CA 证书和密钥********** */ - etcdCACert, err := GenerateAllCA(clusterconfig.CertAsset.EtcdCaCertPath, - clusterconfig.CertAsset.EtcdCaKeyPath, "etcd-ca", []string{"etcd-ca"}) + etcdCACert, err := GenerateAllCA(clusterconfig.CertAsset.EtcdCACertPath, + clusterconfig.CertAsset.EtcdCAKeyPath, "etcd-ca", []string{"etcd-ca"}) if err != nil { logrus.Errorf("Error generating etcd CA:%v", err) return err @@ -128,8 +128,8 @@ func (cg *CertGenerator) GenerateAllFiles() error { /*如果用户没有提供自定义路径,则将ca保存在以下目录; 如果用户提供了自定义路径,也保存一份在以下路径,并反存到配置文件中*/ - clusterconfig.CertAsset.EtcdCaCertPath = globalconfig.PersistDir + "/" + clusterID + "/pki/etcd/ca.crt" - clusterconfig.CertAsset.EtcdCaKeyPath = globalconfig.PersistDir + "/" + clusterID + "/pki/etcd/ca.key" + clusterconfig.CertAsset.EtcdCACertPath = globalconfig.PersistDir + "/" + clusterID + "/pki/etcd/ca.crt" + clusterconfig.CertAsset.EtcdCAKeyPath = globalconfig.PersistDir + "/" + clusterID + "/pki/etcd/ca.key" //保存etcd-ca和密钥到宿主机 err = SaveFileToLocal(globalconfig.PersistDir+"/"+clusterID+"/pki/etcd/ca.crt", etcdCACert.CertRaw) @@ -158,8 +158,8 @@ func (cg *CertGenerator) GenerateAllFiles() error { /* **********生成front-proxy CA 证书和密钥********** */ - frontProxyCACert, err := GenerateAllCA(clusterconfig.CertAsset.FrontProxyCaCertPath, - clusterconfig.CertAsset.FrontProxyCaKeyPath, "front-proxy-ca", []string{"front-proxy-ca"}) + frontProxyCACert, err := GenerateAllCA(clusterconfig.CertAsset.FrontProxyCACertPath, + clusterconfig.CertAsset.FrontProxyCAKeyPath, "front-proxy-ca", []string{"front-proxy-ca"}) if err != nil { logrus.Errorf("Error generating front-proxy CA:%v", err) return err @@ -167,8 +167,8 @@ func (cg *CertGenerator) GenerateAllFiles() error { /*如果用户没有提供自定义路径,则将ca保存在以下目录; 如果用户提供了自定义路径,也保存一份在以下路径,并反存到配置文件中*/ - clusterconfig.CertAsset.FrontProxyCaCertPath = globalconfig.PersistDir + "/" + clusterID + "/pki/front-proxy-ca.crt" - clusterconfig.CertAsset.FrontProxyCaKeyPath = globalconfig.PersistDir + "/" + clusterID + "/pki/front-proxy-ca.key" + clusterconfig.CertAsset.FrontProxyCACertPath = globalconfig.PersistDir + "/" + clusterID + "/pki/front-proxy-ca.crt" + clusterconfig.CertAsset.FrontProxyCAKeyPath = globalconfig.PersistDir + "/" + clusterID + "/pki/front-proxy-ca.key" //保存front-proxy-ca和密钥到宿主机 err = SaveFileToLocal(globalconfig.PersistDir+"/"+clusterID+"/pki/front-proxy-ca.crt", frontProxyCACert.CertRaw) @@ -205,8 +205,8 @@ func (cg *CertGenerator) GenerateAllFiles() error { /*如果用户没有提供自定义路径,则将密钥对保存在以下目录; 如果用户提供了自定义路径,也保存一份在以下路径,并反存到配置文件中*/ - clusterconfig.CertAsset.SaKey = globalconfig.PersistDir + "/pki/sa.key" - clusterconfig.CertAsset.SaPub = globalconfig.PersistDir + "/pki/sa.pub" + clusterconfig.CertAsset.SAKey = globalconfig.PersistDir + "/pki/sa.key" + clusterconfig.CertAsset.SAPub = globalconfig.PersistDir + "/pki/sa.pub" //保存密钥对到宿主机 err = SaveFileToLocal(globalconfig.PersistDir+"/"+clusterID+"/pki/sa.key", sakeypair.PrivateKeyPEM) diff --git a/pkg/configmanager/asset/certasset.go b/pkg/configmanager/asset/certasset.go index 40efe4338dd9f610155d5594e942a538c1e3d699..849b31bd667970c1a15dd4681ce8e9a88ef69150 100644 --- a/pkg/configmanager/asset/certasset.go +++ b/pkg/configmanager/asset/certasset.go @@ -18,12 +18,12 @@ package asset //接受用户自定义的各类ca证书路径 type CertAsset struct { - RootCaCertPath string - RootCaKeyPath string - EtcdCaCertPath string - EtcdCaKeyPath string - FrontProxyCaCertPath string - FrontProxyCaKeyPath string - SaPub string - SaKey string + RootCACertPath string `yaml:"rootCACertPath"` + RootCAKeyPath string `yaml:"rootCAKeyPath"` + EtcdCACertPath string `yaml:"etcdCACertPath"` + EtcdCAKeyPath string `yaml:"etcdCAKeyPath"` + FrontProxyCACertPath string `yaml:"frontProxyCACertPath"` + FrontProxyCAKeyPath string `yaml:"frontProxyCAKeyPath"` + SAPub string `yaml:"saPub"` + SAKey string `yaml:"saKey"` } diff --git a/pkg/configmanager/asset/clusterasset.go b/pkg/configmanager/asset/clusterasset.go index 6ba5aaa8ad6825d1f75b8772fc308ff83d931e36..850ad0c67ceb272bf1c66ebdad6e29c8e5321fa5 100644 --- a/pkg/configmanager/asset/clusterasset.go +++ b/pkg/configmanager/asset/clusterasset.go @@ -22,6 +22,7 @@ import ( "nestos-kubernetes-deployer/cmd/command/opts" "nestos-kubernetes-deployer/pkg/utils" "os" + "strings" "time" "github.com/pkg/errors" @@ -61,7 +62,7 @@ func setUIntValue(target *uint, value uint, defaultValue uint) { } // Generate token -func generateToken() string { +func GenerateToken() string { // Generate a character set for lowercase letters and numbers. charset := "abcdefghijklmnopqrstuvwxyz0123456789" charsetLength := len(charset) @@ -98,7 +99,7 @@ func setMasterConfigs(mc []NodeAsset, opts *opts.MasterConfig) []NodeAsset { } } else { confs = append(confs, mc...) - for i, _ := range opts.IP { + for i := range opts.IP { if i < len(mc) { confs[i].IP = opts.IP[i] confs[i].Hostname = opts.Hostname[i] @@ -127,7 +128,7 @@ func setWorkerHostname(wc []NodeAsset, opts *opts.WorkerConfig) []NodeAsset { } } else { confs = append(confs, wc...) - for i, _ := range opts.Hostname { + for i := range opts.Hostname { if i < len(wc) { confs[i].Hostname = opts.Hostname[i] continue @@ -149,22 +150,22 @@ func setWorkerHostname(wc []NodeAsset, opts *opts.WorkerConfig) []NodeAsset { // ========== Structure method ========== type ClusterAsset struct { - Cluster_ID string + ClusterID string `yaml:"clusterID"` Architecture string Platform string - InfraPlatform interface{} - OSImage `yaml:"osimage"` - UserName string + InfraPlatform interface{} `yaml:"infraPlatform"` + OSImage `yaml:"osImage"` + UserName string `yaml:"username"` Password string - SSHKey string - Master []NodeAsset - Worker []NodeAsset - BootConfig NodeType `yaml:"bootconfig,omitempty"` - Runtime string `yaml:"runtime,omitempty"` //后续考虑增加os层面的配置管理,并将runtime放入OS层面的配置中 + SSHKey string `yaml:"sshKey"` + Master []NodeAsset `yaml:"master,omitempty"` + Worker []NodeAsset `yaml:"worker,omitempty"` + BootConfig NodeType `yaml:"bootConfig,omitempty"` + Runtime string `yaml:"runtime,omitempty"` //后续考虑增加os层面的配置管理,并将runtime放入OS层面的配置中 Kubernetes Housekeeper - CertAsset - HookConf `yaml:"hooks,omitempty"` + CertAsset `yaml:"certAsset"` + HookConf `yaml:"hooks,omitempty"` } type NodeType struct { @@ -179,8 +180,8 @@ type BootFile struct { } type HookConf struct { - PreHookScript string `yaml:"prehookscript,omitempty"` - PostHookYaml string `yaml:"posthookyaml,omitempty"` + PreHookScript string `yaml:"preHookScript,omitempty"` + PostHookYaml string `yaml:"postHookYaml,omitempty"` ShellFiles []ShellFile `yaml:"-"` PostHookFiles []string `yaml:"-"` } @@ -192,36 +193,36 @@ type ShellFile struct { } type OSImage struct { - Type string `yaml:"type,omitempty"` - IsNestOS bool `json:"isnestos" yaml:"-"` - IsOpeneuler bool `json:"isopeneuler" yaml:"-"` + Type string + IsNestOS bool `json:"isNestOS" yaml:"-"` + IsOpeneuler bool `json:"isopenEuler" yaml:"-"` } type Kubernetes struct { - KubernetesVersion string `yaml:"kubernetes-version"` - KubernetesAPIVersion string `yaml:"kubernetes-apiversion"` - ApiServerEndpoint string `yaml:"apiserver-endpoint"` - ImageRegistry string `yaml:"image-registry"` - PauseImage string `yaml:"pause-image"` - ReleaseImageURL string `yaml:"release-image-url"` + KubernetesVersion string `yaml:"kubernetesVersion"` + KubernetesAPIVersion string `yaml:"kubernetesApiVersion"` + ApiServerEndpoint string `yaml:"apiServerEndpoint"` + ImageRegistry string `yaml:"imageRegistry"` + PauseImage string `yaml:"pauseImage"` + ReleaseImageURL string `yaml:"releaseImageURL"` Token string - AdminKubeConfig string - CertificateKey string + AdminKubeConfig string `yaml:"adminKubeConfig"` + CertificateKey string `yaml:"certificateKey"` CaCertHash string `json:"-" yaml:"-"` Network } type Network struct { - ServiceSubnet string `yaml:"service-subnet"` - PodSubnet string `yaml:"pod-subnet"` + ServiceSubnet string `yaml:"serviceSubnet"` + PodSubnet string `yaml:"podSubnet"` Plugin string } type Housekeeper struct { - DeployHousekeeper bool - OperatorImageUrl string - ControllerImageUrl string + DeployHousekeeper bool `yaml:"deployHousekeeper"` + OperatorImageURL string `yaml:"operatorImageURL"` + ControllerImageURL string `yaml:"controllerImageURL"` KubeVersion string `json:"-" yaml:"-"` EvictPodForce bool `json:"-" yaml:"-"` MaxUnavailable uint `json:"-" yaml:"-"` @@ -231,8 +232,7 @@ type Housekeeper struct { func (clusterAsset *ClusterAsset) InitClusterAsset(opts *opts.OptionsList) (*ClusterAsset, error) { // bind info // infra platform - - cf, err := GetDefaultClusterConfig(clusterAsset.Architecture) + cf, err := GetDefaultClusterConfig(clusterAsset.Architecture, strings.ToLower(clusterAsset.Platform)) if err != nil { return nil, err } @@ -248,17 +248,17 @@ func (clusterAsset *ClusterAsset) InitClusterAsset(opts *opts.OptionsList) (*Clu clusterAsset.Master = setMasterConfigs(clusterAsset.Master, &opts.Master) } if opts.Master.CPU != 0 { - for i, _ := range clusterAsset.Master { + for i := range clusterAsset.Master { clusterAsset.Master[i].HardwareInfo.CPU = opts.Master.CPU } } if opts.Master.RAM != 0 { - for i, _ := range clusterAsset.Master { + for i := range clusterAsset.Master { clusterAsset.Master[i].HardwareInfo.RAM = opts.Master.RAM } } if opts.Master.Disk != 0 { - for i, _ := range clusterAsset.Master { + for i := range clusterAsset.Master { clusterAsset.Master[i].HardwareInfo.Disk = opts.Master.Disk } } @@ -276,35 +276,35 @@ func (clusterAsset *ClusterAsset) InitClusterAsset(opts *opts.OptionsList) (*Clu if len(opts.Worker.Hostname) != len(opts.Worker.IP) { return nil, fmt.Errorf("the number of configuration parameters worker hostname and ip should be the same") } - for i, _ := range opts.Worker.IP { + for i := range opts.Worker.IP { clusterAsset.Worker[i].IP = opts.Worker.IP[i] } } if opts.Worker.CPU != 0 { - for i, _ := range clusterAsset.Worker { + for i := range clusterAsset.Worker { clusterAsset.Worker[i].HardwareInfo.CPU = opts.Worker.CPU } } if opts.Worker.RAM != 0 { - for i, _ := range clusterAsset.Worker { + for i := range clusterAsset.Worker { clusterAsset.Worker[i].HardwareInfo.RAM = opts.Worker.RAM } } if opts.Worker.Disk != 0 { - for i, _ := range clusterAsset.Worker { + for i := range clusterAsset.Worker { clusterAsset.Worker[i].HardwareInfo.Disk = opts.Worker.Disk } } // cluster info - SetStringValue(&clusterAsset.Cluster_ID, opts.ClusterID, cf.Cluster_ID) + SetStringValue(&clusterAsset.ClusterID, opts.ClusterID, cf.ClusterID) SetStringValue(&clusterAsset.UserName, opts.UserName, cf.UserName) SetStringValue(&clusterAsset.Password, opts.Password, cf.Password) SetStringValue(&clusterAsset.SSHKey, opts.SSHKey, cf.SSHKey) SetStringValue(&clusterAsset.Kubernetes.KubernetesVersion, opts.KubeVersion, cf.KubernetesVersion) SetStringValue(&clusterAsset.Runtime, opts.Runtime, cf.Runtime) - SetStringValue(&clusterAsset.Kubernetes.ApiServerEndpoint, opts.ApiServerEndpoint, cf.ApiServerEndpoint) + SetStringValue(&clusterAsset.Kubernetes.ApiServerEndpoint, opts.ApiServerEndpoint, clusterAsset.Master[0].IP+":6443") SetStringValue(&clusterAsset.Kubernetes.ImageRegistry, opts.ImageRegistry, cf.ImageRegistry) SetStringValue(&clusterAsset.Kubernetes.PauseImage, opts.PauseImage, cf.PauseImage) SetStringValue(&clusterAsset.Kubernetes.ReleaseImageURL, opts.ReleaseImageUrl, cf.ReleaseImageURL) @@ -325,8 +325,8 @@ func (clusterAsset *ClusterAsset) InitClusterAsset(opts *opts.OptionsList) (*Clu SetStringValue(&clusterAsset.Kubernetes.KubernetesAPIVersion, apiVersion, cf.KubernetesAPIVersion) if clusterAsset.Housekeeper.DeployHousekeeper || opts.Housekeeper.DeployHousekeeper { - SetStringValue(&clusterAsset.Housekeeper.OperatorImageUrl, opts.Housekeeper.OperatorImageUrl, cf.OperatorImageUrl) - SetStringValue(&clusterAsset.Housekeeper.ControllerImageUrl, opts.Housekeeper.ControllerImageUrl, cf.ControllerImageUrl) + SetStringValue(&clusterAsset.Housekeeper.OperatorImageURL, opts.Housekeeper.OperatorImageUrl, cf.OperatorImageURL) + SetStringValue(&clusterAsset.Housekeeper.ControllerImageURL, opts.Housekeeper.ControllerImageUrl, cf.ControllerImageURL) SetStringValue(&clusterAsset.Housekeeper.KubeVersion, opts.Housekeeper.KubeVersion, "") SetStringValue(&clusterAsset.Housekeeper.OSImageURL, opts.Housekeeper.OSImageURL, "") setUIntValue(&clusterAsset.Housekeeper.MaxUnavailable, opts.Housekeeper.MaxUnavailable, cf.MaxUnavailable) @@ -362,71 +362,88 @@ func (clusterAsset *ClusterAsset) Persist(dir string) error { return nil } -func GetDefaultClusterConfig(arch string) (*ClusterAsset, error) { +func GetDefaultClusterConfig(arch string, platform string) (*ClusterAsset, error) { var ( - OperatorImageUrl string - ControllerImageUrl string + OperatorImageURL string + ControllerImageURL string ) switch arch { case "amd64", "x86_64": - OperatorImageUrl = "hub.oepkgs.net/nestos/housekeeper/amd64/housekeeper-operator-manager:0.1.0" - ControllerImageUrl = "hub.oepkgs.net/nestos/housekeeper/amd64/housekeeper-controller-manager:0.1.0" + OperatorImageURL = "hub.oepkgs.net/nestos/housekeeper/amd64/housekeeper-operator-manager:0.1.0" + ControllerImageURL = "hub.oepkgs.net/nestos/housekeeper/amd64/housekeeper-controller-manager:0.1.0" case "arm64", "aarch64": - OperatorImageUrl = "hub.oepkgs.net/nestos/housekeeper/arm64/housekeeper-operator-manager:0.1.0" - ControllerImageUrl = "hub.oepkgs.net/nestos/housekeeper/arm64/housekeeper-controller-manager:0.1.0" + OperatorImageURL = "hub.oepkgs.net/nestos/housekeeper/arm64/housekeeper-operator-manager:0.1.0" + ControllerImageURL = "hub.oepkgs.net/nestos/housekeeper/arm64/housekeeper-controller-manager:0.1.0" default: return nil, errors.New("unsupported architecture") } - return &ClusterAsset{ - Cluster_ID: "cluster", - Architecture: arch, - Platform: "libvirt", - UserName: "root", - Password: "$1$yoursalt$UGhjCXAJKpWWpeN8xsF.c/", - SSHKey: utils.GetDefaultPubKeyPath(), - Master: []NodeAsset{ + clusterAsset := &ClusterAsset{} + clusterAsset.ClusterID = "cluster" + clusterAsset.Architecture = arch + clusterAsset.Platform = platform + clusterAsset.UserName = "root" + clusterAsset.SSHKey = utils.GetDefaultPubKeyPath() + + switch platform { + case "libvirt", "openstack": + clusterAsset.Master = []NodeAsset{ { Hostname: "k8s-master01", + IP: "", HardwareInfo: HardwareInfo{ CPU: 4, RAM: 8192, Disk: 50, }, - IP: "192.168.132.11", }, - }, - Worker: []NodeAsset{ + } + clusterAsset.Worker = []NodeAsset{ { Hostname: "k8s-worker01", + IP: "", HardwareInfo: HardwareInfo{ CPU: 4, RAM: 8192, Disk: 50, }, - IP: "", }, - }, - Runtime: "isulad", - Kubernetes: Kubernetes{ - KubernetesVersion: "v1.23.10", - KubernetesAPIVersion: "v1beta3", - ApiServerEndpoint: utils.GetApiServerEndpoint("192.168.132.11"), - ImageRegistry: "k8s.gcr.io", - PauseImage: "pause:3.6", - ReleaseImageURL: "", - Token: generateToken(), - CertificateKey: "a301c9c55596c54c5d4c7173aa1e3b6fd304130b0c703bb23149c0c69f94b8e0", - Network: Network{ - ServiceSubnet: "10.96.0.0/16", - PodSubnet: "10.244.0.0/16", - Plugin: "https://projectcalico.docs.tigera.io/archive/v3.22/manifests/calico.yaml", + } + clusterAsset.Password = "$1$yoursalt$UGhjCXAJKpWWpeN8xsF.c/" + case "pxe", "ipxe": + clusterAsset.Master = []NodeAsset{ + { + Hostname: "k8s-master01", + IP: "", }, + } + clusterAsset.Password = "$6$mX6/gt6yDD8LmSqb$rQ95JPHeWBZQ0Gyjvw5/hUbGK57TJXjeXtDauom0Tr4z88mn4qDYtH/yc8nDxE/8HOhy.Fx4WYS1vTTune1l50" + default: + return nil, errors.New("unsupported platform") + } + + clusterAsset.Runtime = "isulad" + clusterAsset.Kubernetes = Kubernetes{ + KubernetesVersion: "v1.23.10", + KubernetesAPIVersion: "v1beta3", + ApiServerEndpoint: "", + ImageRegistry: "k8s.gcr.io", + PauseImage: "pause:3.6", + ReleaseImageURL: "", + Token: GenerateToken(), + CertificateKey: "a301c9c55596c54c5d4c7173aa1e3b6fd304130b0c703bb23149c0c69f94b8e0", + Network: Network{ + ServiceSubnet: "10.96.0.0/16", + PodSubnet: "10.244.0.0/16", + Plugin: "https://projectcalico.docs.tigera.io/archive/v3.22/manifests/calico.yaml", }, - Housekeeper: Housekeeper{ - OperatorImageUrl: OperatorImageUrl, - ControllerImageUrl: ControllerImageUrl, - MaxUnavailable: 2, - }, - }, nil + } + + clusterAsset.Housekeeper = Housekeeper{ + OperatorImageURL: OperatorImageURL, + ControllerImageURL: ControllerImageURL, + MaxUnavailable: 2, + } + + return clusterAsset, nil } diff --git a/pkg/configmanager/asset/infraasset/infraasset.go b/pkg/configmanager/asset/infraasset/infraasset.go index 17d8f9709c82644d820bdf4edcb7de730fea1f1a..363b90edbe9ccb4bf8ca520eb92978647d27b10a 100644 --- a/pkg/configmanager/asset/infraasset/infraasset.go +++ b/pkg/configmanager/asset/infraasset/infraasset.go @@ -32,8 +32,8 @@ func InitInfraAsset(clusterAsset *asset.ClusterAsset, opts *opts.OptionsList) (I asset.SetStringValue(&clusterAsset.Architecture, opts.Arch, runtime.GOARCH) asset.SetStringValue(&clusterAsset.Platform, opts.Platform, "libvirt") - switch clusterAsset.Platform { - case strings.ToLower("openstack"): + switch strings.ToLower(clusterAsset.Platform) { + case "openstack": assetMap, ok := convertMap(clusterAsset.InfraPlatform, "openstack") if !ok { return nil, errors.New("failed to get openstack asset") @@ -45,7 +45,7 @@ func InitInfraAsset(clusterAsset *asset.ClusterAsset, opts *opts.OptionsList) (I return nil, err } return infraAsset, nil - case strings.ToLower("libvirt"): + case "libvirt": assetMap, ok := convertMap(clusterAsset.InfraPlatform, "libvirt") if !ok { return nil, errors.New("failed to get libvirt asset") @@ -57,7 +57,7 @@ func InitInfraAsset(clusterAsset *asset.ClusterAsset, opts *opts.OptionsList) (I return nil, err } return infraAsset, nil - case strings.ToLower("pxe"): + case "pxe": assetMap, ok := convertMap(clusterAsset.InfraPlatform, "pxe") if !ok { return nil, errors.New("failed to get pxe asset") @@ -69,7 +69,7 @@ func InitInfraAsset(clusterAsset *asset.ClusterAsset, opts *opts.OptionsList) (I return nil, err } return infraAsset, nil - case strings.ToLower("ipxe"): + case "ipxe": assetMap, ok := convertMap(clusterAsset.InfraPlatform, "ipxe") if !ok { return nil, errors.New("failed to get ipxe asset") @@ -91,39 +91,39 @@ func convertMap(inputMap interface{}, platform string) (map[string]interface{}, if inputMap == nil { // If inputMap is nil, return an empty map corresponding to the platform structure. - switch platform { - case strings.ToLower("openstack"): + switch strings.ToLower(platform) { + case "libvirt": return map[string]interface{}{ - "username": "", - "password": "", - "tenant_name": "", - "auth_url": "", - "region": "", - "internal_network": "", - "external_network": "", - "glance_name": "", - "availability_zone": "", + "uri": "", + "osImage": "", + "cidr": "", + "gateway": "", }, true - case strings.ToLower("libvirt"): + case "openstack": return map[string]interface{}{ - "uri": "", - "os_image": "", - "cidr": "", - "gateway": "", + "username": "", + "password": "", + "tenantName": "", + "authURL": "", + "region": "", + "internalNetwork": "", + "externalNetwork": "", + "glanceName": "", + "availabilityZone": "", }, true - case strings.ToLower("pxe"): + case "pxe": return map[string]interface{}{ - "http_server_port": "", - "http_root_directory": "", - "tftp_server_ip": "", - "tftp_server_port": "", - "tftp_root_directory": "", + "httpServerPort": "", + "httpRootDir": "", + "tftpServerIP": "", + "tftpServerPort": "", + "tftpRootDir": "", }, true - case strings.ToLower("ipxe"): + case "ipxe": return map[string]interface{}{ - "ipxe_port": "", - "ipxe_file_path": "", - "ipxe_os_install_tree_path": "", + "ipxePort": "", + "ipxeFilePath": "", + "ipxeOSInstallTreePath": "", }, true default: return resultMap, false diff --git a/pkg/configmanager/asset/infraasset/ipxeasset.go b/pkg/configmanager/asset/infraasset/ipxeasset.go index 59614de39cbab824d0191d7d74d780442e05e019..8c529b0c29ace0b6bb98a31f2cc5d086d337b772 100644 --- a/pkg/configmanager/asset/infraasset/ipxeasset.go +++ b/pkg/configmanager/asset/infraasset/ipxeasset.go @@ -22,21 +22,21 @@ import ( ) type IPXEAsset struct { - IPXEPort string `yaml:"ipxe_port"` - IPXEFilePath string `yaml:"ipxe_file_path"` - IPXEOSInstallTreePath string `yaml:"ipxe_os_install_tree_path"` + IPXEPort string `yaml:"ipxePort"` + IPXEFilePath string `yaml:"ipxeFilePath"` + IPXEOSInstallTreePath string `yaml:"ipxeOSInstallTreePath"` } func (ia *IPXEAsset) InitAsset(ipxeMap map[string]interface{}, opts *opts.OptionsList, args ...interface{}) (InfraAsset, error) { - updateFieldFromMap("ipxe_port", &ia.IPXEPort, ipxeMap) + updateFieldFromMap("ipxePort", &ia.IPXEPort, ipxeMap) asset.SetStringValue(&ia.IPXEPort, opts.InfraPlatform.IPXE.IPXEPort, "9080") - updateFieldFromMap("ipxe_file_path", &ia.IPXEFilePath, ipxeMap) - if err := asset.CheckStringValue(&ia.IPXEFilePath, opts.InfraPlatform.IPXE.IPXEFilePath, "ipxe-file-path"); err != nil { - return nil, err - } + updateFieldFromMap("ipxeFilePath", &ia.IPXEFilePath, ipxeMap) + // if err := asset.CheckStringValue(&ia.IPXEFilePath, opts.InfraPlatform.IPXE.IPXEFilePath, "ipxe-file-path"); err != nil { + // return nil, err + // } - updateFieldFromMap("ipxe_os_install_tree_path", &ia.IPXEOSInstallTreePath, ipxeMap) + updateFieldFromMap("ipxeOSInstallTreePath", &ia.IPXEOSInstallTreePath, ipxeMap) asset.SetStringValue(&ia.IPXEOSInstallTreePath, opts.InfraPlatform.IPXE.IPXEOSInstallTreePath, "/var/www/html/") return ia, nil diff --git a/pkg/configmanager/asset/infraasset/libvirtasset.go b/pkg/configmanager/asset/infraasset/libvirtasset.go index 8d6c13da689de33085052648b18f5cbad7a82c20..ba81276073d56cb74474fb9090b8583d8f61f5a7 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 + OSImage string `yaml:"osImage"` CIDR string Gateway string } @@ -32,16 +32,10 @@ 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) - osImage := "https://nestos.org.cn/nestos20230928/nestos-for-container/x86_64/NestOS-For-Container-22.03-LTS-SP2.20230928.0-qemu.x86_64.qcow2" - if len(args) > 0 { - if arch, ok := args[0].(string); ok { - if arch == "arm64" || arch == "aarch64" { - osImage = "https://nestos.org.cn/nestos20230928/nestos-for-container/aarch64/NestOS-For-Container-22.03-LTS-SP2.20230928.0-qemu.aarch64.qcow2" - } - } + updateFieldFromMap("osImage", &la.OSImage, libvirtMap) + if err := asset.CheckStringValue(&la.OSImage, opts.InfraPlatform.Libvirt.OSImage, "os-image"); err != nil { + return nil, err } - asset.SetStringValue(&la.OSImage, opts.InfraPlatform.Libvirt.OSImage, osImage) updateFieldFromMap("cidr", &la.CIDR, libvirtMap) asset.SetStringValue(&la.CIDR, opts.InfraPlatform.Libvirt.CIDR, "192.168.132.0/24") diff --git a/pkg/configmanager/asset/infraasset/openstackasset.go b/pkg/configmanager/asset/infraasset/openstackasset.go index 3894a344a017a966f4ee4498a36a7a2547527ff0..628b857cc7779d6f53e0eac796690020b21dd08f 100644 --- a/pkg/configmanager/asset/infraasset/openstackasset.go +++ b/pkg/configmanager/asset/infraasset/openstackasset.go @@ -22,62 +22,52 @@ import ( ) type OpenStackAsset struct { - UserName string - Password string - Tenant_Name string - Auth_URL string - Region string - Internal_Network string - External_Network string - Glance_Name string - Availability_Zone string + UserName string `yaml:"username"` + Password string `yaml:"password"` + TenantName string `yaml:"tenantName"` + AuthURL string `yaml:"authURL"` + Region string `yaml:"region"` + InternalNetwork string `yaml:"internalNetwork"` + ExternalNetwork string `yaml:"externalNetwork"` + GlanceName string `yaml:"glanceName"` + AvailabilityZone string `yaml:"availabilityZone"` } func (oa *OpenStackAsset) InitAsset(openstackMap map[string]interface{}, opts *opts.OptionsList, args ...interface{}) (InfraAsset, error) { updateFieldFromMap("username", &oa.UserName, openstackMap) - if err := asset.CheckStringValue(&oa.UserName, opts.InfraPlatform.OpenStack.UserName, "openstack-username"); err != nil { - return nil, err - } + asset.SetStringValue(&oa.UserName, opts.InfraPlatform.OpenStack.UserName, "admin") updateFieldFromMap("password", &oa.Password, openstackMap) if err := asset.CheckStringValue(&oa.Password, opts.InfraPlatform.OpenStack.Password, "openstack-password"); err != nil { return nil, err } - updateFieldFromMap("tenant_name", &oa.Tenant_Name, openstackMap) - if err := asset.CheckStringValue(&oa.Tenant_Name, opts.InfraPlatform.OpenStack.Tenant_Name, "openstack-tenant-name"); err != nil { - return nil, err - } + updateFieldFromMap("tenantName", &oa.TenantName, openstackMap) + asset.SetStringValue(&oa.TenantName, opts.InfraPlatform.OpenStack.TenantName, "admin") - updateFieldFromMap("auth_url", &oa.Auth_URL, openstackMap) - if err := asset.CheckStringValue(&oa.Auth_URL, opts.InfraPlatform.OpenStack.Auth_URL, "openstack-auth-url"); err != nil { - return nil, err - } + updateFieldFromMap("authURL", &oa.AuthURL, openstackMap) + asset.SetStringValue(&oa.AuthURL, opts.InfraPlatform.OpenStack.AuthURL, "http://controller:5000/v3") updateFieldFromMap("region", &oa.Region, openstackMap) - if err := asset.CheckStringValue(&oa.Region, opts.InfraPlatform.OpenStack.Region, "openstack-region"); err != nil { - return nil, err - } + asset.SetStringValue(&oa.Region, opts.InfraPlatform.OpenStack.Region, "RegionOne") - updateFieldFromMap("internal_network", &oa.Internal_Network, openstackMap) - if err := asset.CheckStringValue(&oa.Internal_Network, opts.InfraPlatform.OpenStack.Internal_Network, "openstack-internal-network"); err != nil { + updateFieldFromMap("internalNetwork", &oa.InternalNetwork, openstackMap) + if err := asset.CheckStringValue(&oa.InternalNetwork, opts.InfraPlatform.OpenStack.InternalNetwork, "openstack-internal-network"); err != nil { return nil, err } - updateFieldFromMap("external_network", &oa.External_Network, openstackMap) - if err := asset.CheckStringValue(&oa.External_Network, opts.InfraPlatform.OpenStack.External_Network, "openstack-external-network"); err != nil { + updateFieldFromMap("externalNetwork", &oa.ExternalNetwork, openstackMap) + if err := asset.CheckStringValue(&oa.ExternalNetwork, opts.InfraPlatform.OpenStack.ExternalNetwork, "openstack-external-network"); err != nil { return nil, err } - updateFieldFromMap("glance_name", &oa.Glance_Name, openstackMap) - if err := asset.CheckStringValue(&oa.Glance_Name, opts.InfraPlatform.OpenStack.Glance_Name, "openstack-glance-name"); err != nil { + updateFieldFromMap("glanceName", &oa.GlanceName, openstackMap) + if err := asset.CheckStringValue(&oa.GlanceName, opts.InfraPlatform.OpenStack.GlanceName, "openstack-glance-name"); err != nil { return nil, err } - updateFieldFromMap("availability_zone", &oa.Availability_Zone, openstackMap) - if err := asset.CheckStringValue(&oa.Availability_Zone, opts.InfraPlatform.OpenStack.Availability_Zone, "openstack-availability-zone"); err != nil { - return nil, err - } + updateFieldFromMap("availabilityZone", &oa.AvailabilityZone, openstackMap) + asset.SetStringValue(&oa.AvailabilityZone, opts.InfraPlatform.OpenStack.AvailabilityZone, "nova") return oa, nil } diff --git a/pkg/configmanager/asset/infraasset/pxeasset.go b/pkg/configmanager/asset/infraasset/pxeasset.go index ceee94dcf74a4a7a4e132797ac4c7e52638e539e..80e30f311455e5ddd3f02eb16f16149bf642b555 100644 --- a/pkg/configmanager/asset/infraasset/pxeasset.go +++ b/pkg/configmanager/asset/infraasset/pxeasset.go @@ -22,27 +22,29 @@ import ( ) type PXEAsset struct { - HTTPServerPort string `yaml:"http_server_port"` - HTTPRootDir string `yaml:"http_root_directory"` - TFTPServerIP string `yaml:"tftp_server_ip"` - TFTPServerPort string `yaml:"tftp_server_port"` - TFTPRootDir string `yaml:"tftp_root_directory"` + HTTPServerPort string `yaml:"httpServerPort"` + HTTPRootDir string `yaml:"httpRootDir"` + TFTPServerIP string `yaml:"tftpServerIP"` + TFTPServerPort string `yaml:"tftpServerPort"` + TFTPRootDir string `yaml:"tftpRootDir"` } func (pa *PXEAsset) InitAsset(pxeMap map[string]interface{}, opts *opts.OptionsList, args ...interface{}) (InfraAsset, error) { - updateFieldFromMap("http_server_port", &pa.HTTPServerPort, pxeMap) + updateFieldFromMap("httpServerPort", &pa.HTTPServerPort, pxeMap) asset.SetStringValue(&pa.HTTPServerPort, opts.InfraPlatform.PXE.HTTPServerPort, "9080") - updateFieldFromMap("http_root_directory", &pa.HTTPRootDir, pxeMap) + updateFieldFromMap("httpRootDir", &pa.HTTPRootDir, pxeMap) asset.SetStringValue(&pa.HTTPRootDir, opts.InfraPlatform.PXE.HTTPRootDir, "/var/www/html/") - updateFieldFromMap("tftp_server_ip", &pa.TFTPServerIP, pxeMap) - asset.SetStringValue(&pa.TFTPServerIP, opts.InfraPlatform.PXE.TFTPServerIP, "127.0.0.1") + updateFieldFromMap("tftpServerIP", &pa.TFTPServerIP, pxeMap) + if err := asset.CheckStringValue(&pa.TFTPServerIP, opts.InfraPlatform.PXE.TFTPServerIP, "tftp-server-ip"); err != nil { + return nil, err + } - updateFieldFromMap("tftp_server_port", &pa.TFTPServerPort, pxeMap) + updateFieldFromMap("tftpServerPort", &pa.TFTPServerPort, pxeMap) asset.SetStringValue(&pa.TFTPServerPort, opts.InfraPlatform.PXE.TFTPServerPort, "69") - updateFieldFromMap("tftp_root_directory", &pa.TFTPRootDir, pxeMap) + updateFieldFromMap("tftpRootDir", &pa.TFTPRootDir, pxeMap) asset.SetStringValue(&pa.TFTPRootDir, opts.InfraPlatform.PXE.TFTPRootDir, "/var/lib/tftpboot/") return pa, nil diff --git a/pkg/configmanager/asset/nodeasset.go b/pkg/configmanager/asset/nodeasset.go index 760d0465b942049dbb6206de505390a663cc4fa7..b8ce4868c6e19a5e3165d7218601de032aab3a8c 100644 --- a/pkg/configmanager/asset/nodeasset.go +++ b/pkg/configmanager/asset/nodeasset.go @@ -19,10 +19,10 @@ package asset import "nestos-kubernetes-deployer/pkg/utils" type NodeAsset struct { - Hostname string - IP string - HardwareInfo - Certs []utils.StorageContent `json:"-" yaml:"-"` // Certificates content (not printed in JSON and YAML) + Hostname string + IP string + HardwareInfo `yaml:"hardwareInfo,omitempty"` + Certs []utils.StorageContent `json:"-" yaml:"-"` // Certificates content (not printed in JSON and YAML) } type HardwareInfo struct { diff --git a/pkg/configmanager/globalconfig/globalconfig.go b/pkg/configmanager/globalconfig/globalconfig.go index a169c4d0cdaeae36922af87176d9c0e268244caa..d278e86165c750d5dc72efa124b4ba561cb499b4 100644 --- a/pkg/configmanager/globalconfig/globalconfig.go +++ b/pkg/configmanager/globalconfig/globalconfig.go @@ -31,9 +31,9 @@ const GlobalConfigFile = "global_config.yaml" func InitGlobalConfig(opts *opts.OptionsList) (*GlobalConfig, error) { globalAsset := &GlobalConfig{ - Log_Level: "default log level", - ClusterConfig_Path: "", - PersistDir: opts.RootOptDir, // default persist directory + LogLevel: "default log level", + ClusterConfigPath: "", + PersistDir: opts.RootOptDir, // default persist directory BootstrapUrl: BootstrapUrl{ BootstrapIgnPort: "9080", // default port }, @@ -52,8 +52,8 @@ func InitGlobalConfig(opts *opts.OptionsList) (*GlobalConfig, error) { } } - if opts.NKD.Log_Level != "" { - globalAsset.Log_Level = opts.NKD.Log_Level + if opts.NKD.LogLevel != "" { + globalAsset.LogLevel = opts.NKD.LogLevel } if opts.NKD.BootstrapIgnHost != "" { globalAsset.BootstrapIgnHost = opts.NKD.BootstrapIgnHost @@ -90,15 +90,15 @@ func InitGlobalConfig(opts *opts.OptionsList) (*GlobalConfig, error) { // ========== Structure method ========== type GlobalConfig struct { - Log_Level string - ClusterConfig_Path string - PersistDir string // default: /etc/nkd + LogLevel string `yaml:"logLevel"` + ClusterConfigPath string `yaml:"clusterConfigPath"` + PersistDir string // default: /etc/nkd BootstrapUrl } type BootstrapUrl struct { - BootstrapIgnHost string `yaml:"bootstrap_ign_host"` - BootstrapIgnPort string `yaml:"bootstrap_ign_port"` + BootstrapIgnHost string `yaml:"bootstrapIgnHost"` + BootstrapIgnPort string `yaml:"bootstrapIgnPort"` } // Delete deletes the global asset. diff --git a/pkg/configmanager/manager.go b/pkg/configmanager/manager.go index 5f7a88ef30b65498c61518664dd5b8de68b04927..414597f6ab23bd4e2826312c5f4e629d115b907c 100644 --- a/pkg/configmanager/manager.go +++ b/pkg/configmanager/manager.go @@ -90,7 +90,7 @@ func initializeClusterAsset(fileData *asset.ClusterAsset, opts *opts.OptionsList } clusterAsset.InfraPlatform = infraAsset - ClusterAsset[fileData.Cluster_ID] = clusterAsset + ClusterAsset[fileData.ClusterID] = clusterAsset return nil } @@ -129,7 +129,7 @@ func Persist() error { // Persist cluster for _, clusterAsset := range ClusterAsset { - clusterDir := filepath.Join(persistDir, clusterAsset.Cluster_ID) + clusterDir := filepath.Join(persistDir, clusterAsset.ClusterID) if err := os.MkdirAll(clusterDir, 0644); err != nil { return err } diff --git a/pkg/infra/ipxe.go b/pkg/infra/ipxe.go index 474fc57045c1d5b6dd9f629d583a254bcb4a54cc..3a455562511a5efb9076a83135bce7e3c9848058 100644 --- a/pkg/infra/ipxe.go +++ b/pkg/infra/ipxe.go @@ -45,7 +45,6 @@ func (i *IPXE) deployHTTP(port string, dirPath string, filePath string) error { if err := i.HTTPService.Start(); err != nil { return fmt.Errorf("error starting file service: %v", err) } - defer i.HTTPService.Stop() return nil } diff --git a/pkg/infra/pxe.go b/pkg/infra/pxe.go index 6d96a12569d5d334201556341c7b6f199f773b57..aefa7fec9ea5a548de4ebf9af0cacedec5e74063 100644 --- a/pkg/infra/pxe.go +++ b/pkg/infra/pxe.go @@ -37,7 +37,6 @@ func (p *PXE) deployHTTP(port string, dirPath string) error { if err := p.HTTPService.Start(); err != nil { return err } - defer p.HTTPService.Stop() return nil } diff --git a/pkg/osmanager/bootconfig/cloudinit/cloudinit.go b/pkg/osmanager/bootconfig/cloudinit/cloudinit.go index e692f34f7d2a7cbf711218d3b4fe898c2c5274ae..0004149f4b20ba75c10d58efaab37e3b07a27caf 100644 --- a/pkg/osmanager/bootconfig/cloudinit/cloudinit.go +++ b/pkg/osmanager/bootconfig/cloudinit/cloudinit.go @@ -82,7 +82,7 @@ func (c *Cloudinit) generateNodeConfig(nodeType, service string, yamlPath string if err := tmpl.GenerateBootConfig(c.BootstrapBaseurl, nodeType); err != nil { return err } - savePath := bootconfig.GetSavePath(c.ClusterAsset.Cluster_ID) + savePath := bootconfig.GetSavePath(c.ClusterAsset.ClusterID) if err := bootconfig.SaveYAML(tmpl.config, savePath, filename, "#cloud-config\n"); err != nil { return err } diff --git a/pkg/osmanager/bootconfig/ignition/ignition.go b/pkg/osmanager/bootconfig/ignition/ignition.go index b392ce263e033e288a867d77f6105d04c27c665b..542d8b4c0d02e3c2001c5f2b13cb208d854eca42 100644 --- a/pkg/osmanager/bootconfig/ignition/ignition.go +++ b/pkg/osmanager/bootconfig/ignition/ignition.go @@ -92,7 +92,7 @@ func (ig *Ignition) generateNodeIgnition(nodeType, service string, yamlPath stri } } - savePath := bootconfig.GetSavePath(ig.ClusterAsset.Cluster_ID) + savePath := bootconfig.GetSavePath(ig.ClusterAsset.ClusterID) if err := bootconfig.SaveJSON(tmpl.config, savePath, ignFilename); err != nil { return err } diff --git a/pkg/osmanager/bootconfig/kickstart/kickstart.go b/pkg/osmanager/bootconfig/kickstart/kickstart.go index ca0d72eb34d91f5c56df6863c2b48c7f4f7cec9d..eae956a3e22b803765e45f206537ebdbbf95a7f6 100644 --- a/pkg/osmanager/bootconfig/kickstart/kickstart.go +++ b/pkg/osmanager/bootconfig/kickstart/kickstart.go @@ -49,10 +49,8 @@ func (c *Kickstart) GenerateBootConfig() error { } } - if len(c.ClusterAsset.Worker) > 0 { - if err := c.generateNodeConfig(constants.Worker, constants.JoinWorkerService, "", kickstartWorker); err != nil { - return err - } + if err := c.generateNodeConfig(constants.Worker, constants.JoinWorkerService, "", kickstartWorker); err != nil { + return err } return nil @@ -66,7 +64,7 @@ func (c *Kickstart) generateNodeConfig(nodeType, service string, yamlPath string if err := tmpl.GenerateBootConfig(c.BootstrapBaseurl, nodeType); err != nil { return err } - savePath := bootconfig.GetSavePath(c.ClusterAsset.Cluster_ID) + savePath := bootconfig.GetSavePath(c.ClusterAsset.ClusterID) if err := bootconfig.SaveFile(tmpl.config, savePath, filename); err != nil { return err } diff --git a/pkg/osmanager/generalos/generalos.go b/pkg/osmanager/generalos/generalos.go index c020a51c1172bd7df78940b1fac9d615f3261d6f..0d18bfbe55335296c3ab0ff7ddc42a7e4e1e4262 100644 --- a/pkg/osmanager/generalos/generalos.go +++ b/pkg/osmanager/generalos/generalos.go @@ -47,9 +47,9 @@ func NewGeneralOS(conf *asset.ClusterAsset) (*GeneralOS, error) { return nil, errors.New("master node config is empty") } - certGenerator := cert.NewCertGenerator(conf.Cluster_ID, &conf.Master[0]) + certGenerator := cert.NewCertGenerator(conf.ClusterID, &conf.Master[0]) cloudinitFile := cloudinit.NewCloudinit(conf, configmanager.GetBootstrapIgnHostPort()) - kickstartFile := kickstart.NewKickstart(conf, filepath.Join(configmanager.GetPersistDir(), conf.Cluster_ID)) + kickstartFile := kickstart.NewKickstart(conf, filepath.Join(configmanager.GetPersistDir(), conf.ClusterID)) return &GeneralOS{ conf: conf, certs: certGenerator, diff --git a/pkg/osmanager/nestos/nestos.go b/pkg/osmanager/nestos/nestos.go index a8de33e8109d175d8c72814f2e7d9c6e6b3ee953..e9ab48c8a409b9c296a583542ef0d73052e7df50 100644 --- a/pkg/osmanager/nestos/nestos.go +++ b/pkg/osmanager/nestos/nestos.go @@ -47,9 +47,9 @@ func NewNestOS(conf *asset.ClusterAsset) (*NestOS, error) { return nil, errors.New("master node config is empty") } - certGenerator := cert.NewCertGenerator(conf.Cluster_ID, &conf.Master[0]) + certGenerator := cert.NewCertGenerator(conf.ClusterID, &conf.Master[0]) ignitionFile := ignition.NewIgnition(conf, configmanager.GetBootstrapIgnHostPort()) - kickstartFile := kickstart.NewKickstart(conf, filepath.Join(configmanager.GetPersistDir(), conf.Cluster_ID)) + kickstartFile := kickstart.NewKickstart(conf, filepath.Join(configmanager.GetPersistDir(), conf.ClusterID)) return &NestOS{ conf: conf, certs: certGenerator, diff --git a/pkg/terraform/generate.go b/pkg/terraform/generate.go index ad5ae31f0a4e68d1a66fffd660c7192e21c72b58..bd8fe85fcb4401131625e594f133882eb9e6daab 100644 --- a/pkg/terraform/generate.go +++ b/pkg/terraform/generate.go @@ -42,22 +42,22 @@ type Infra struct { } type OpenStack struct { - Username string - Password string - Tenant_Name string - Auth_URL string - Region string - Internal_Network string - External_Network string - Glance_Name string - Availability_Zone string + Username string + Password string + TenantName string + AuthURL string + Region string + InternalNetwork string + ExternalNetwork string + GlanceName string + AvailabilityZone string } type Libvirt struct { - URI string - OSImage_Path string - CIDR string - Gateway string + URI string + OSImage string + CIDR string + Gateway string } type Node struct { @@ -71,29 +71,29 @@ type Node struct { } func (infra *Infra) Generate(conf *asset.ClusterAsset, node string) (err error) { - infra.ClusterID = conf.Cluster_ID + infra.ClusterID = conf.ClusterID - switch conf.Platform { - case strings.ToLower("libvirt"): + switch strings.ToLower(conf.Platform) { + case "libvirt": libvirtAsset := conf.InfraPlatform.(*infraasset.LibvirtAsset) infra.Platform = &Libvirt{ - URI: libvirtAsset.URI, - OSImage_Path: libvirtAsset.OSImage, - CIDR: libvirtAsset.CIDR, - Gateway: libvirtAsset.Gateway, + URI: libvirtAsset.URI, + OSImage: libvirtAsset.OSImage, + CIDR: libvirtAsset.CIDR, + Gateway: libvirtAsset.Gateway, } - case strings.ToLower("openstack"): + case "openstack": openstackAsset := conf.InfraPlatform.(*infraasset.OpenStackAsset) infra.Platform = &OpenStack{ - Username: openstackAsset.UserName, - Password: openstackAsset.Password, - Tenant_Name: openstackAsset.Tenant_Name, - Auth_URL: openstackAsset.Auth_URL, - Region: openstackAsset.Region, - Internal_Network: openstackAsset.Internal_Network, - External_Network: openstackAsset.External_Network, - Glance_Name: openstackAsset.Glance_Name, - Availability_Zone: openstackAsset.Availability_Zone, + Username: openstackAsset.UserName, + Password: openstackAsset.Password, + TenantName: openstackAsset.TenantName, + AuthURL: openstackAsset.AuthURL, + Region: openstackAsset.Region, + InternalNetwork: openstackAsset.InternalNetwork, + ExternalNetwork: openstackAsset.ExternalNetwork, + GlanceName: openstackAsset.GlanceName, + AvailabilityZone: openstackAsset.AvailabilityZone, } default: logrus.Errorf("unsupported platform") @@ -206,11 +206,11 @@ func (infra *Infra) Generate(conf *asset.ClusterAsset, node string) (err error) } persistDir := configmanager.GetPersistDir() - if err := os.MkdirAll(filepath.Join(persistDir, conf.Cluster_ID, node), 0644); err != nil { + if err := os.MkdirAll(filepath.Join(persistDir, conf.ClusterID, node), 0644); err != nil { return err } - outputFile, err := os.Create(filepath.Join(persistDir, conf.Cluster_ID, node, fmt.Sprintf("%s.tf", node))) + outputFile, err := os.Create(filepath.Join(persistDir, conf.ClusterID, node, fmt.Sprintf("%s.tf", node))) if err != nil { return errors.Wrap(err, "failed to create terraform config file") } @@ -218,7 +218,7 @@ func (infra *Infra) Generate(conf *asset.ClusterAsset, node string) (err error) // Read template. osType := strings.ToLower(conf.OSImage.Type) - if osType == "openeuler" { + if osType != "nestos" { osType = "generalos" }