Cloud provider GCP: adopt changes to CCM / CNM for GCP

This commit is contained in:
Malte Poll 2022-03-25 10:55:37 +01:00 committed by Malte Poll
parent a59ce30e7b
commit 3c1ddfb94e
9 changed files with 430 additions and 60 deletions

View file

@ -0,0 +1,17 @@
package gcp
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestTrivialCNMFunctions(t *testing.T) {
assert := assert.New(t)
cloud := CloudNodeManager{}
assert.Empty(cloud.Image())
assert.Empty(cloud.Path())
assert.Empty(cloud.ExtraArgs())
assert.False(cloud.Supported())
}