mirror of https://github.com/kubernetes/kops.git
				
				
				
			
		
			
				
	
	
		
			83 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
| Copyright 2024 The Kubernetes 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 model
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"path/filepath"
 | |
| 
 | |
| 	"k8s.io/klog/v2"
 | |
| 	"k8s.io/kops/upup/pkg/fi"
 | |
| 	"k8s.io/kops/upup/pkg/fi/nodeup/nodetasks"
 | |
| 	"k8s.io/kops/util/pkg/distributions"
 | |
| )
 | |
| 
 | |
| type NerdctlBuilder struct {
 | |
| 	*NodeupModelContext
 | |
| }
 | |
| 
 | |
| var _ fi.NodeupModelBuilder = &NerdctlBuilder{}
 | |
| 
 | |
| func (b *NerdctlBuilder) Build(c *fi.NodeupModelBuilderContext) error {
 | |
| 	if b.skipInstall() {
 | |
| 		klog.Info("containerd.skipInstall is set to true; won't install nerdctl")
 | |
| 		return nil
 | |
| 	}
 | |
| 
 | |
| 	assetName := "nerdctl"
 | |
| 	assetPath := ""
 | |
| 	asset, err := b.Assets.Find(assetName, assetPath)
 | |
| 	if err != nil {
 | |
| 		return fmt.Errorf("unable to locate asset %q: %w", assetName, err)
 | |
| 	}
 | |
| 
 | |
| 	c.AddTask(&nodetasks.File{
 | |
| 		Path:     b.nerdctlPath(),
 | |
| 		Contents: asset,
 | |
| 		Type:     nodetasks.FileType_File,
 | |
| 		Mode:     s("0755"),
 | |
| 	})
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (b *NerdctlBuilder) binaryPath() string {
 | |
| 	path := "/usr/local/bin"
 | |
| 	if b.Distribution == distributions.DistributionFlatcar {
 | |
| 		path = "/opt/kops/bin"
 | |
| 	}
 | |
| 	if b.Distribution == distributions.DistributionContainerOS {
 | |
| 		path = "/home/kubernetes/bin"
 | |
| 	}
 | |
| 	return path
 | |
| 
 | |
| }
 | |
| 
 | |
| func (b *NerdctlBuilder) nerdctlPath() string {
 | |
| 	return filepath.Join(b.binaryPath(), "nerdctl")
 | |
| }
 | |
| 
 | |
| func (b *NerdctlBuilder) skipInstall() bool {
 | |
| 	d := b.NodeupConfig.ContainerdConfig
 | |
| 
 | |
| 	if d == nil {
 | |
| 		return false
 | |
| 	}
 | |
| 
 | |
| 	return d.SkipInstall
 | |
| }
 |