mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-26 18:03:02 +00:00
52 lines
1.6 KiB
Go
52 lines
1.6 KiB
Go
/*
|
|
Copyright 2022 The KubeSphere Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package cloudinit
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const (
|
|
workerCloudInit = `{{.Header}}
|
|
{{template "files" .WriteFiles}}
|
|
- path: /run/cluster-api/placeholder
|
|
owner: root:root
|
|
permissions: '0640'
|
|
content: "This placeholder file is used to create the /run/cluster-api sub directory in a way that is compatible with both Linux and Windows (mkdir -p /run/cluster-api does not work with Windows)"
|
|
runcmd:
|
|
{{- template "commands" .PreK3sCommands }}
|
|
- "INSTALL_K3S_SKIP_DOWNLOAD=true INSTALL_K3S_EXEC='agent' /usr/local/bin/k3s-install.sh"
|
|
{{- template "commands" .PostK3sCommands }}
|
|
`
|
|
)
|
|
|
|
// NodeInput defines the context to generate an agent node cloud-init.
|
|
type NodeInput struct {
|
|
BaseUserData
|
|
}
|
|
|
|
// NewNode returns the cloud-init for joining a node instance.
|
|
func NewNode(input *NodeInput) ([]byte, error) {
|
|
input.prepare()
|
|
userData, err := generate("JoinWorker", workerCloudInit, input)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "failed to generate user data for machine joining worker node")
|
|
}
|
|
|
|
return userData, err
|
|
}
|