-
Notifications
You must be signed in to change notification settings - Fork 548
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for new platform. Signed-off-by: Andrey Smirnov <[email protected]> Signed-off-by: Claus Albøge <[email protected]>
- Loading branch information
Showing
11 changed files
with
510 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
117 changes: 117 additions & 0 deletions
117
internal/app/machined/pkg/runtime/v1alpha1/platform/cloudstack/cloudstack.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
// 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 cloudstack contains the Cloudstack platform implementation. | ||
package cloudstack | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"log" | ||
"net/netip" | ||
"strings" | ||
|
||
"github.com/cosi-project/runtime/pkg/state" | ||
"github.com/siderolabs/go-procfs/procfs" | ||
|
||
"github.com/siderolabs/talos/internal/app/machined/pkg/runtime" | ||
"github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" | ||
"github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/internal/netutils" | ||
"github.com/siderolabs/talos/pkg/download" | ||
"github.com/siderolabs/talos/pkg/machinery/constants" | ||
"github.com/siderolabs/talos/pkg/machinery/resources/network" | ||
runtimeres "github.com/siderolabs/talos/pkg/machinery/resources/runtime" | ||
) | ||
|
||
// Cloudstack is the concrete type that implements the runtime.Platform interface. | ||
type Cloudstack struct{} | ||
|
||
// ParseMetadata converts Cloudstack platform metadata into platform network config. | ||
func (e *Cloudstack) ParseMetadata(metadata *MetadataConfig) (*runtime.PlatformNetworkConfig, error) { | ||
networkConfig := &runtime.PlatformNetworkConfig{} | ||
|
||
if metadata.Hostname != "" { | ||
hostnameSpec := network.HostnameSpecSpec{ | ||
ConfigLayer: network.ConfigPlatform, | ||
} | ||
|
||
if err := hostnameSpec.ParseFQDN(metadata.Hostname); err != nil { | ||
return nil, err | ||
} | ||
|
||
networkConfig.Hostnames = append(networkConfig.Hostnames, hostnameSpec) | ||
} | ||
|
||
if metadata.PublicIPv4 != "" { | ||
if ip, err := netip.ParseAddr(metadata.PublicIPv4); err == nil { | ||
networkConfig.ExternalIPs = append(networkConfig.ExternalIPs, ip) | ||
} | ||
} | ||
|
||
networkConfig.Metadata = &runtimeres.PlatformMetadataSpec{ | ||
Platform: e.Name(), | ||
Hostname: metadata.Hostname, | ||
Region: metadata.Zone, | ||
Zone: metadata.Zone, | ||
InstanceType: strings.ToLower(strings.SplitN(metadata.InstanceType, " ", 2)[0]), | ||
InstanceID: metadata.InstanceID, | ||
ProviderID: fmt.Sprintf("cloudstack://%s", metadata.InstanceID), | ||
} | ||
|
||
return networkConfig, nil | ||
} | ||
|
||
// Name implements the runtime.Platform interface. | ||
func (e *Cloudstack) Name() string { | ||
return "cloudstack" | ||
} | ||
|
||
// Configuration implements the runtime.Platform interface. | ||
func (e *Cloudstack) Configuration(ctx context.Context, r state.State) ([]byte, error) { | ||
if err := netutils.Wait(ctx, r); err != nil { | ||
return nil, err | ||
} | ||
|
||
log.Printf("fetching machine config from %q", CloudstackUserDataEndpoint) | ||
|
||
return download.Download(ctx, CloudstackUserDataEndpoint, | ||
download.WithErrorOnNotFound(errors.ErrNoConfigSource), | ||
download.WithErrorOnEmptyResponse(errors.ErrNoConfigSource)) | ||
} | ||
|
||
// Mode implements the runtime.Platform interface. | ||
func (e *Cloudstack) Mode() runtime.Mode { | ||
return runtime.ModeCloud | ||
} | ||
|
||
// KernelArgs implements the runtime.Platform interface. | ||
func (e *Cloudstack) KernelArgs(string) procfs.Parameters { | ||
return []*procfs.Parameter{ | ||
procfs.NewParameter("console").Append("tty1").Append("ttyS0"), | ||
procfs.NewParameter(constants.KernelParamNetIfnames).Append("0"), | ||
} | ||
} | ||
|
||
// NetworkConfiguration implements the runtime.Platform interface. | ||
func (e *Cloudstack) NetworkConfiguration(ctx context.Context, _ state.State, ch chan<- *runtime.PlatformNetworkConfig) error { | ||
log.Printf("fetching cloudstack instance config from: %q", CloudstackMetadataEndpoint) | ||
|
||
metadata, err := e.getMetadata(ctx) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
networkConfig, err := e.ParseMetadata(metadata) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
select { | ||
case ch <- networkConfig: | ||
case <-ctx.Done(): | ||
return ctx.Err() | ||
} | ||
|
||
return nil | ||
} |
39 changes: 39 additions & 0 deletions
39
internal/app/machined/pkg/runtime/v1alpha1/platform/cloudstack/cloudstack_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// 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 cloudstack_test | ||
|
||
import ( | ||
_ "embed" | ||
"encoding/json" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
"gopkg.in/yaml.v3" | ||
|
||
"github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/cloudstack" | ||
) | ||
|
||
//go:embed testdata/metadata.json | ||
var rawMetadata []byte | ||
|
||
//go:embed testdata/expected.yaml | ||
var expectedNetworkConfig string | ||
|
||
func TestEmpty(t *testing.T) { | ||
p := &cloudstack.Cloudstack{} | ||
|
||
var m cloudstack.MetadataConfig | ||
|
||
require.NoError(t, json.Unmarshal(rawMetadata, &m)) | ||
|
||
networkConfig, err := p.ParseMetadata(&m) | ||
require.NoError(t, err) | ||
|
||
marshaled, err := yaml.Marshal(networkConfig) | ||
require.NoError(t, err) | ||
|
||
assert.Equal(t, expectedNetworkConfig, string(marshaled)) | ||
} |
76 changes: 76 additions & 0 deletions
76
internal/app/machined/pkg/runtime/v1alpha1/platform/cloudstack/metadata.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// 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 cloudstack | ||
|
||
import ( | ||
"context" | ||
stderrors "errors" | ||
"fmt" | ||
|
||
"github.com/siderolabs/talos/internal/app/machined/pkg/runtime/v1alpha1/platform/errors" | ||
"github.com/siderolabs/talos/pkg/download" | ||
) | ||
|
||
const ( | ||
// CloudstackMetadataEndpoint is the local Cloudstack endpoint. | ||
CloudstackMetadataEndpoint = "http://data-server./latest/meta-data" | ||
// CloudstackUserDataEndpoint is the local Cloudstack endpoint for the config. | ||
CloudstackUserDataEndpoint = "http://data-server./latest/user-data" | ||
) | ||
|
||
// MetadataConfig represents a metadata Cloudstack instance. | ||
type MetadataConfig struct { | ||
Hostname string `json:"local-hostname,omitempty"` | ||
InstanceID string `json:"instance-id,omitempty"` | ||
InstanceType string `json:"service-offering,omitempty"` | ||
PublicIPv4 string `json:"public-ipv4,omitempty"` | ||
Zone string `json:"availability-zone,omitempty"` | ||
} | ||
|
||
/* | ||
local-ipv4 | ||
public-hostname | ||
vm-id | ||
public-keys | ||
cloud-identifier | ||
hypervisor-host-name | ||
*/ | ||
|
||
func (e *Cloudstack) getMetadata(ctx context.Context) (metadata *MetadataConfig, err error) { | ||
getMetadataKey := func(key string) (string, error) { | ||
res, metaerr := download.Download(ctx, fmt.Sprintf("%s/%s", CloudstackMetadataEndpoint, key), | ||
download.WithErrorOnNotFound(errors.ErrNoConfigSource), | ||
download.WithErrorOnEmptyResponse(errors.ErrNoConfigSource)) | ||
if metaerr != nil && !stderrors.Is(metaerr, errors.ErrNoConfigSource) { | ||
return "", fmt.Errorf("failed to fetch %q from IMDS: %w", key, metaerr) | ||
} | ||
|
||
return string(res), nil | ||
} | ||
|
||
metadata = &MetadataConfig{} | ||
|
||
if metadata.Hostname, err = getMetadataKey("local-hostname"); err != nil { | ||
return nil, err | ||
} | ||
|
||
if metadata.InstanceType, err = getMetadataKey("service-offering"); err != nil { | ||
return nil, err | ||
} | ||
|
||
if metadata.InstanceID, err = getMetadataKey("instance-id"); err != nil { | ||
return nil, err | ||
} | ||
|
||
if metadata.PublicIPv4, err = getMetadataKey("public-ipv4"); err != nil { | ||
return nil, err | ||
} | ||
|
||
if metadata.Zone, err = getMetadataKey("availability-zone"); err != nil { | ||
return nil, err | ||
} | ||
|
||
return metadata, nil | ||
} |
18 changes: 18 additions & 0 deletions
18
internal/app/machined/pkg/runtime/v1alpha1/platform/cloudstack/testdata/expected.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
addresses: [] | ||
links: [] | ||
routes: [] | ||
hostnames: | ||
- hostname: talos | ||
domainname: fqdn | ||
layer: platform | ||
resolvers: [] | ||
timeServers: [] | ||
operators: [] | ||
externalIPs: | ||
- 1.2.3.4 | ||
metadata: | ||
platform: cloudstack | ||
hostname: talos.fqdn | ||
instanceType: standard.tiny | ||
instanceId: 3fe6b28a-669e-4eb2-bffd-4180c572c410 | ||
providerId: cloudstack://3fe6b28a-669e-4eb2-bffd-4180c572c410 |
6 changes: 6 additions & 0 deletions
6
internal/app/machined/pkg/runtime/v1alpha1/platform/cloudstack/testdata/metadata.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"local-hostname": "talos.fqdn", | ||
"instance-id": "3fe6b28a-669e-4eb2-bffd-4180c572c410", | ||
"public-ipv4": "1.2.3.4", | ||
"service-offering": "standard.tiny" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.