mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-27 14:31:11 +01:00
The current code was stipping non-`v1alpha1.Config` documents. Provide a proper method in the config provider, and update places using it. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
56 lines
1.7 KiB
Go
56 lines
1.7 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package kubernetes
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/cosi-project/runtime/pkg/safe"
|
|
|
|
"github.com/siderolabs/talos/pkg/machinery/api/machine"
|
|
"github.com/siderolabs/talos/pkg/machinery/client"
|
|
"github.com/siderolabs/talos/pkg/machinery/config/encoder"
|
|
v1alpha1config "github.com/siderolabs/talos/pkg/machinery/config/types/v1alpha1"
|
|
"github.com/siderolabs/talos/pkg/machinery/resources/config"
|
|
)
|
|
|
|
// patchNodeConfig updates node configuration by means of patch function.
|
|
func patchNodeConfig(ctx context.Context, cluster UpgradeProvider, node string, encoderOpt encoder.Option, patchFunc func(config *v1alpha1config.Config) error) error {
|
|
c, err := cluster.Client()
|
|
if err != nil {
|
|
return fmt.Errorf("error building Talos API client: %w", err)
|
|
}
|
|
|
|
ctx = client.WithNode(ctx, node)
|
|
|
|
mc, err := safe.StateGetByID[*config.MachineConfig](ctx, c.COSI, config.V1Alpha1ID)
|
|
if err != nil {
|
|
return fmt.Errorf("error fetching config resource: %w", err)
|
|
}
|
|
|
|
provider := mc.Provider()
|
|
|
|
newProvider, err := provider.PatchV1Alpha1(patchFunc)
|
|
if err != nil {
|
|
return fmt.Errorf("error patching config: %w", err)
|
|
}
|
|
|
|
cfgBytes, err := newProvider.EncodeBytes(encoderOpt)
|
|
if err != nil {
|
|
return fmt.Errorf("error serializing config: %w", err)
|
|
}
|
|
|
|
_, err = c.ApplyConfiguration(ctx, &machine.ApplyConfigurationRequest{
|
|
Data: cfgBytes,
|
|
Mode: machine.ApplyConfigurationRequest_NO_REBOOT,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("error applying config: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|