mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-11 08:20:16 -04:00
Move cli/gcp to cli/internal/gcp
This commit is contained in:
parent
48b4f10207
commit
6cd93e4179
27 changed files with 20 additions and 91 deletions
7
cli/internal/gcp/autoscaling_node_group.go
Normal file
7
cli/internal/gcp/autoscaling_node_group.go
Normal file
|
@ -0,0 +1,7 @@
|
|||
package gcp
|
||||
|
||||
import "fmt"
|
||||
|
||||
func AutoscalingNodeGroup(project string, zone string, nodeInstanceGroup string, min int, max int) string {
|
||||
return fmt.Sprintf("%d:%d:https://www.googleapis.com/compute/v1/projects/%s/zones/%s/instanceGroups/%s", min, max, project, zone, nodeInstanceGroup)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue