mygithub.libinneed.workers.dev/stackitcloud/stackit-cli
Advanced tools
@@ -58,3 +58,3 @@ ## stackit config set | ||
| --sqlserverflex-custom-endpoint string SQLServer Flex API base URL, used in calls to this API | ||
| --token-custom-endpoint string Custom endpoint for the token API, which is used to request access tokens when the service-account authentication is activated | ||
| --token-custom-endpoint string Custom token endpoint of the Service Account API, which is used to request access tokens when the service account authentication is activated. Not relevant for user authentication. | ||
| ``` | ||
@@ -61,0 +61,0 @@ |
@@ -58,3 +58,3 @@ ## stackit config unset | ||
| --sqlserverflex-custom-endpoint SQLServer Flex API base URL. If unset, uses the default base URL | ||
| --token-custom-endpoint Custom endpoint for the token API, which is used to request access tokens when the service-account authentication is activated | ||
| --token-custom-endpoint Custom token endpoint of the Service Account API, which is used to request access tokens when the service account authentication is activated. Not relevant for user authentication. | ||
| --verbosity Verbosity of the CLI | ||
@@ -61,0 +61,0 @@ ``` |
+1
-1
@@ -37,3 +37,3 @@ module github.com/stackitcloud/stackit-cli | ||
| golang.org/x/term v0.23.0 | ||
| golang.org/x/text v0.17.0 | ||
| golang.org/x/text v0.18.0 | ||
| k8s.io/apimachinery v0.29.2 | ||
@@ -40,0 +40,0 @@ k8s.io/client-go v0.29.2 |
+2
-2
@@ -222,4 +222,4 @@ github.com/alessio/shellescape v1.4.2 h1:MHPfaU+ddJ0/bYWpgIeUnQUqKrlJ1S7BfEYPM4uEoM0= | ||
| golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | ||
| golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc= | ||
| golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= | ||
| golang.org/x/text v0.18.0 h1:XvMDiNzPAl0jr17s6W9lcaIhGUfUORdGCNsuLmPG224= | ||
| golang.org/x/text v0.18.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= | ||
| golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk= | ||
@@ -226,0 +226,0 @@ golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= |
@@ -158,3 +158,3 @@ package set | ||
| cmd.Flags().String(iaasCustomEndpointFlag, "", "IaaS API base URL, used in calls to this API") | ||
| cmd.Flags().String(tokenCustomEndpointFlag, "", "Custom endpoint for the token API, which is used to request access tokens when the service-account authentication is activated") | ||
| cmd.Flags().String(tokenCustomEndpointFlag, "", "Custom token endpoint of the Service Account API, which is used to request access tokens when the service account authentication is activated. Not relevant for user authentication.") | ||
@@ -161,0 +161,0 @@ err := viper.BindPFlag(config.SessionTimeLimitKey, cmd.Flags().Lookup(sessionTimeLimitFlag)) |
@@ -243,3 +243,3 @@ package unset | ||
| cmd.Flags().Bool(iaasCustomEndpointFlag, false, "IaaS API base URL. If unset, uses the default base URL") | ||
| cmd.Flags().Bool(tokenCustomEndpointFlag, false, "Custom endpoint for the token API, which is used to request access tokens when the service-account authentication is activated") | ||
| cmd.Flags().Bool(tokenCustomEndpointFlag, false, "Custom token endpoint of the Service Account API, which is used to request access tokens when the service account authentication is activated. Not relevant for user authentication.") | ||
| } | ||
@@ -246,0 +246,0 @@ |
@@ -315,6 +315,7 @@ package utils | ||
| }, | ||
| MaxSurge: utils.Ptr(int64(1)), | ||
| Maximum: utils.Ptr(int64(2)), | ||
| Minimum: utils.Ptr(int64(1)), | ||
| Name: utils.Ptr("pool-default"), | ||
| MaxSurge: utils.Ptr(int64(1)), | ||
| MaxUnavailable: utils.Ptr(int64(0)), | ||
| Maximum: utils.Ptr(int64(2)), | ||
| Minimum: utils.Ptr(int64(1)), | ||
| Name: utils.Ptr("pool-default"), | ||
| Volume: &ske.Volume{ | ||
@@ -321,0 +322,0 @@ Type: utils.Ptr("storage_premium_perf2"), |
@@ -24,2 +24,3 @@ package utils | ||
| defaultNodepoolMaxSurge = 1 | ||
| defaultNodepoolMaxUnavailable = 0 | ||
| defaultNodepoolMaximum = 2 | ||
@@ -142,6 +143,7 @@ defaultNodepoolMinimum = 1 | ||
| }, | ||
| MaxSurge: utils.Ptr(int64(defaultNodepoolMaxSurge)), | ||
| Maximum: utils.Ptr(int64(defaultNodepoolMaximum)), | ||
| Minimum: utils.Ptr(int64(defaultNodepoolMinimum)), | ||
| Name: utils.Ptr(defaultNodepoolName), | ||
| MaxSurge: utils.Ptr(int64(defaultNodepoolMaxSurge)), | ||
| MaxUnavailable: utils.Ptr(int64(defaultNodepoolMaxUnavailable)), | ||
| Maximum: utils.Ptr(int64(defaultNodepoolMaximum)), | ||
| Minimum: utils.Ptr(int64(defaultNodepoolMinimum)), | ||
| Name: utils.Ptr(defaultNodepoolName), | ||
| Volume: &ske.Volume{ | ||
@@ -148,0 +150,0 @@ Type: utils.Ptr(defaultNodepoolVolumeType), |