mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-06 02:34:03 +00:00
Add GetEnvOr() feature to utils Package
This commit is contained in:
parent
5abfb43b64
commit
39b1874041
@ -14,15 +14,38 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package flocker
|
package util
|
||||||
|
|
||||||
import "os"
|
import (
|
||||||
|
"os"
|
||||||
|
"strconv"
|
||||||
|
)
|
||||||
|
|
||||||
// getenvOrDefault returns the value of the enviroment variable if it's set,
|
func GetEnvAsStringOrFallback(key, defaultValue string) string {
|
||||||
// otherwise it return the default value provided.
|
|
||||||
func getenvOrFallback(key, defaultValue string) string {
|
|
||||||
if v := os.Getenv(key); v != "" {
|
if v := os.Getenv(key); v != "" {
|
||||||
return v
|
return v
|
||||||
}
|
}
|
||||||
return defaultValue
|
return defaultValue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetEnvAsIntOrFallback(key string, defaultValue int) (int, error) {
|
||||||
|
if v := os.Getenv(key); v != "" {
|
||||||
|
value, err := strconv.Atoi(v)
|
||||||
|
if err != nil {
|
||||||
|
return defaultValue, err
|
||||||
|
}
|
||||||
|
return value, nil
|
||||||
|
}
|
||||||
|
return defaultValue, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetEnvAsFloat64OrFallback(key string, defaultValue float64) (float64, error) {
|
||||||
|
if v := os.Getenv(key); v != "" {
|
||||||
|
value, err := strconv.ParseFloat(v, 64)
|
||||||
|
if err != nil {
|
||||||
|
return defaultValue, err
|
||||||
|
}
|
||||||
|
return value, nil
|
||||||
|
}
|
||||||
|
return defaultValue, nil
|
||||||
|
}
|
68
pkg/util/env_test.go
Normal file
68
pkg/util/env_test.go
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package util
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"strconv"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestGetEnvAsStringOrFallback(t *testing.T) {
|
||||||
|
const expected = "foo"
|
||||||
|
|
||||||
|
assert := assert.New(t)
|
||||||
|
|
||||||
|
key := "FLOCKER_SET_VAR"
|
||||||
|
os.Setenv(key, expected)
|
||||||
|
assert.Equal(expected, GetEnvAsStringOrFallback(key, "~"+expected))
|
||||||
|
|
||||||
|
key = "FLOCKER_UNSET_VAR"
|
||||||
|
assert.Equal(expected, GetEnvAsStringOrFallback(key, expected))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetEnvAsIntOrFallback(t *testing.T) {
|
||||||
|
const expected = 1
|
||||||
|
|
||||||
|
assert := assert.New(t)
|
||||||
|
|
||||||
|
key := "FLOCKER_SET_VAR"
|
||||||
|
os.Setenv(key, strconv.Itoa(expected))
|
||||||
|
returnVal, _ := GetEnvAsIntOrFallback(key, 1)
|
||||||
|
assert.Equal(expected, returnVal)
|
||||||
|
|
||||||
|
key = "FLOCKER_UNSET_VAR"
|
||||||
|
returnVal, _ = GetEnvAsIntOrFallback(key, expected)
|
||||||
|
assert.Equal(expected, returnVal)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetEnvAsFloat64OrFallback(t *testing.T) {
|
||||||
|
const expected = 1.0
|
||||||
|
|
||||||
|
assert := assert.New(t)
|
||||||
|
|
||||||
|
key := "FLOCKER_SET_VAR"
|
||||||
|
os.Setenv(key, "1.0")
|
||||||
|
returnVal, _ := GetEnvAsFloat64OrFallback(key, 2.0)
|
||||||
|
assert.Equal(expected, returnVal)
|
||||||
|
|
||||||
|
key = "FLOCKER_UNSET_VAR"
|
||||||
|
returnVal, _ = GetEnvAsFloat64OrFallback(key, 1.0)
|
||||||
|
assert.Equal(expected, returnVal)
|
||||||
|
}
|
@ -19,12 +19,12 @@ package flocker
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"path"
|
"path"
|
||||||
"strconv"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
flockerclient "github.com/ClusterHQ/flocker-go"
|
flockerclient "github.com/ClusterHQ/flocker-go"
|
||||||
"k8s.io/kubernetes/pkg/api"
|
"k8s.io/kubernetes/pkg/api"
|
||||||
"k8s.io/kubernetes/pkg/types"
|
"k8s.io/kubernetes/pkg/types"
|
||||||
|
"k8s.io/kubernetes/pkg/util"
|
||||||
"k8s.io/kubernetes/pkg/util/exec"
|
"k8s.io/kubernetes/pkg/util/exec"
|
||||||
"k8s.io/kubernetes/pkg/util/mount"
|
"k8s.io/kubernetes/pkg/util/mount"
|
||||||
"k8s.io/kubernetes/pkg/util/strings"
|
"k8s.io/kubernetes/pkg/util/strings"
|
||||||
@ -134,15 +134,15 @@ func (b flockerBuilder) SetUp() error {
|
|||||||
// newFlockerClient uses environment variables and pod attributes to return a
|
// newFlockerClient uses environment variables and pod attributes to return a
|
||||||
// flocker client capable of talking with the Flocker control service.
|
// flocker client capable of talking with the Flocker control service.
|
||||||
func (b flockerBuilder) newFlockerClient() (*flockerclient.Client, error) {
|
func (b flockerBuilder) newFlockerClient() (*flockerclient.Client, error) {
|
||||||
host := getenvOrFallback("FLOCKER_CONTROL_SERVICE_HOST", defaultHost)
|
host := util.GetEnvAsStringOrFallback("FLOCKER_CONTROL_SERVICE_HOST", defaultHost)
|
||||||
portConfig := getenvOrFallback("FLOCKER_CONTROL_SERVICE_PORT", strconv.Itoa(defaultPort))
|
port, err := util.GetEnvAsIntOrFallback("FLOCKER_CONTROL_SERVICE_PORT", defaultPort)
|
||||||
port, err := strconv.Atoi(portConfig)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
caCertPath := getenvOrFallback("FLOCKER_CONTROL_SERVICE_CA_FILE", defaultCACertFile)
|
caCertPath := util.GetEnvAsStringOrFallback("FLOCKER_CONTROL_SERVICE_CA_FILE", defaultCACertFile)
|
||||||
keyPath := getenvOrFallback("FLOCKER_CONTROL_SERVICE_CLIENT_KEY_FILE", defaultClientKeyFile)
|
keyPath := util.GetEnvAsStringOrFallback("FLOCKER_CONTROL_SERVICE_CLIENT_KEY_FILE", defaultClientKeyFile)
|
||||||
certPath := getenvOrFallback("FLOCKER_CONTROL_SERVICE_CLIENT_CERT_FILE", defaultClientCertFile)
|
certPath := util.GetEnvAsStringOrFallback("FLOCKER_CONTROL_SERVICE_CLIENT_CERT_FILE", defaultClientCertFile)
|
||||||
|
|
||||||
c, err := flockerclient.NewClient(host, port, b.flocker.pod.Status.HostIP, caCertPath, keyPath, certPath)
|
c, err := flockerclient.NewClient(host, port, b.flocker.pod.Status.HostIP, caCertPath, keyPath, certPath)
|
||||||
return c, err
|
return c, err
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package flocker
|
|
||||||
|
|
||||||
import (
|
|
||||||
"os"
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestGetenvOrFallback(t *testing.T) {
|
|
||||||
const expected = "foo"
|
|
||||||
|
|
||||||
assert := assert.New(t)
|
|
||||||
|
|
||||||
key := "FLOCKER_SET_VAR"
|
|
||||||
os.Setenv(key, expected)
|
|
||||||
assert.Equal(expected, getenvOrFallback(key, "~"+expected))
|
|
||||||
|
|
||||||
key = "FLOCKER_UNSET_VAR"
|
|
||||||
assert.Equal(expected, getenvOrFallback(key, expected))
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user