46 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build !windows && !linux
 | 
						|
 | 
						|
/*
 | 
						|
   Copyright The containerd 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 server
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	runtime "k8s.io/cri-api/pkg/apis/runtime/v1"
 | 
						|
 | 
						|
	containerstore "github.com/containerd/containerd/v2/pkg/cri/store/container"
 | 
						|
)
 | 
						|
 | 
						|
// UpdateContainerResources updates ContainerConfig of the container.
 | 
						|
func (c *criService) UpdateContainerResources(ctx context.Context, r *runtime.UpdateContainerResourcesRequest) (retRes *runtime.UpdateContainerResourcesResponse, retErr error) {
 | 
						|
	container, err := c.containerStore.Get(r.GetContainerId())
 | 
						|
	if err != nil {
 | 
						|
		return nil, fmt.Errorf("failed to find container: %w", err)
 | 
						|
	}
 | 
						|
	// Update resources in status update transaction, so that:
 | 
						|
	// 1) There won't be race condition with container start.
 | 
						|
	// 2) There won't be concurrent resource update to the same container.
 | 
						|
	if err := container.Status.Update(func(status containerstore.Status) (containerstore.Status, error) {
 | 
						|
		return status, nil
 | 
						|
	}); err != nil {
 | 
						|
		return nil, fmt.Errorf("failed to update resources: %w", err)
 | 
						|
	}
 | 
						|
	return &runtime.UpdateContainerResourcesResponse{}, nil
 | 
						|
}
 |