mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
Merge pull request #51589 from tcharding/util-functions
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. kubectl: Move utility functions to util package **What this PR does / why we need it**: `parseFileSource()` and `parseLiteralSource()` are utility functions. We have a package already for utility functions, `kubectl/util/`. Move utility functions to `kubectl/util`, capitalize function names to export from package. **Special notes for your reviewer**: **Release note**: ```release-note NONE ``` /sig cli /kind cleanup
This commit is contained in:
commit
6d933e35cd
@ -17,7 +17,6 @@ go_test(
|
|||||||
"deployment_test.go",
|
"deployment_test.go",
|
||||||
"env_file_test.go",
|
"env_file_test.go",
|
||||||
"generate_test.go",
|
"generate_test.go",
|
||||||
"kubectl_test.go",
|
|
||||||
"namespace_test.go",
|
"namespace_test.go",
|
||||||
"quota_test.go",
|
"quota_test.go",
|
||||||
"resource_filter_test.go",
|
"resource_filter_test.go",
|
||||||
|
@ -26,6 +26,7 @@ import (
|
|||||||
"k8s.io/apimachinery/pkg/runtime"
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
"k8s.io/apimachinery/pkg/util/validation"
|
"k8s.io/apimachinery/pkg/util/validation"
|
||||||
"k8s.io/kubernetes/pkg/api"
|
"k8s.io/kubernetes/pkg/api"
|
||||||
|
"k8s.io/kubernetes/pkg/kubectl/util"
|
||||||
"k8s.io/kubernetes/pkg/kubectl/util/hash"
|
"k8s.io/kubernetes/pkg/kubectl/util/hash"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -169,7 +170,7 @@ func (s ConfigMapGeneratorV1) validate() error {
|
|||||||
// information into the provided configMap.
|
// information into the provided configMap.
|
||||||
func handleConfigMapFromLiteralSources(configMap *api.ConfigMap, literalSources []string) error {
|
func handleConfigMapFromLiteralSources(configMap *api.ConfigMap, literalSources []string) error {
|
||||||
for _, literalSource := range literalSources {
|
for _, literalSource := range literalSources {
|
||||||
keyName, value, err := parseLiteralSource(literalSource)
|
keyName, value, err := util.ParseLiteralSource(literalSource)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -185,7 +186,7 @@ func handleConfigMapFromLiteralSources(configMap *api.ConfigMap, literalSources
|
|||||||
// into the provided configMap
|
// into the provided configMap
|
||||||
func handleConfigMapFromFileSources(configMap *api.ConfigMap, fileSources []string) error {
|
func handleConfigMapFromFileSources(configMap *api.ConfigMap, fileSources []string) error {
|
||||||
for _, fileSource := range fileSources {
|
for _, fileSource := range fileSources {
|
||||||
keyName, filePath, err := parseFileSource(fileSource)
|
keyName, filePath, err := util.ParseFileSource(fileSource)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -18,18 +18,11 @@ limitations under the License.
|
|||||||
package kubectl
|
package kubectl
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"path"
|
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"k8s.io/apimachinery/pkg/runtime/schema"
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
|
||||||
kubectlAnnotationPrefix = "kubectl.kubernetes.io/"
|
|
||||||
)
|
|
||||||
|
|
||||||
type NamespaceInfo struct {
|
type NamespaceInfo struct {
|
||||||
Namespace string
|
Namespace string
|
||||||
}
|
}
|
||||||
@ -188,44 +181,3 @@ func ResourceAliases(rs []string) []string {
|
|||||||
}
|
}
|
||||||
return as
|
return as
|
||||||
}
|
}
|
||||||
|
|
||||||
// parseFileSource parses the source given. Acceptable formats include:
|
|
||||||
//
|
|
||||||
// 1. source-path: the basename will become the key name
|
|
||||||
// 2. source-name=source-path: the source-name will become the key name and source-path is the path to the key file
|
|
||||||
//
|
|
||||||
// Key names cannot include '='.
|
|
||||||
func parseFileSource(source string) (keyName, filePath string, err error) {
|
|
||||||
numSeparators := strings.Count(source, "=")
|
|
||||||
switch {
|
|
||||||
case numSeparators == 0:
|
|
||||||
return path.Base(source), source, nil
|
|
||||||
case numSeparators == 1 && strings.HasPrefix(source, "="):
|
|
||||||
return "", "", fmt.Errorf("key name for file path %v missing.", strings.TrimPrefix(source, "="))
|
|
||||||
case numSeparators == 1 && strings.HasSuffix(source, "="):
|
|
||||||
return "", "", fmt.Errorf("file path for key name %v missing.", strings.TrimSuffix(source, "="))
|
|
||||||
case numSeparators > 1:
|
|
||||||
return "", "", errors.New("Key names or file paths cannot contain '='.")
|
|
||||||
default:
|
|
||||||
components := strings.Split(source, "=")
|
|
||||||
return components[0], components[1], nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// parseLiteralSource parses the source key=val pair into its component pieces.
|
|
||||||
// This functionality is distinguished from strings.SplitN(source, "=", 2) since
|
|
||||||
// it returns an error in the case of empty keys, values, or a missing equals
|
|
||||||
// sign.
|
|
||||||
func parseLiteralSource(source string) (keyName, value string, err error) {
|
|
||||||
// leading equal is invalid
|
|
||||||
if strings.Index(source, "=") == 0 {
|
|
||||||
return "", "", fmt.Errorf("invalid literal source %v, expected key=value", source)
|
|
||||||
}
|
|
||||||
// split after the first equal (so values can have the = character)
|
|
||||||
items := strings.SplitN(source, "=", 2)
|
|
||||||
if len(items) != 2 {
|
|
||||||
return "", "", fmt.Errorf("invalid literal source %v, expected key=value", source)
|
|
||||||
}
|
|
||||||
|
|
||||||
return items[0], items[1], nil
|
|
||||||
}
|
|
||||||
|
@ -42,6 +42,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
kubectlAnnotationPrefix = "kubectl.kubernetes.io/"
|
||||||
sourceIdAnnotation = kubectlAnnotationPrefix + "update-source-id"
|
sourceIdAnnotation = kubectlAnnotationPrefix + "update-source-id"
|
||||||
desiredReplicasAnnotation = kubectlAnnotationPrefix + "desired-replicas"
|
desiredReplicasAnnotation = kubectlAnnotationPrefix + "desired-replicas"
|
||||||
originalReplicasAnnotation = kubectlAnnotationPrefix + "original-replicas"
|
originalReplicasAnnotation = kubectlAnnotationPrefix + "original-replicas"
|
||||||
|
@ -26,6 +26,7 @@ import (
|
|||||||
"k8s.io/apimachinery/pkg/runtime"
|
"k8s.io/apimachinery/pkg/runtime"
|
||||||
"k8s.io/apimachinery/pkg/util/validation"
|
"k8s.io/apimachinery/pkg/util/validation"
|
||||||
"k8s.io/kubernetes/pkg/api"
|
"k8s.io/kubernetes/pkg/api"
|
||||||
|
"k8s.io/kubernetes/pkg/kubectl/util"
|
||||||
"k8s.io/kubernetes/pkg/kubectl/util/hash"
|
"k8s.io/kubernetes/pkg/kubectl/util/hash"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -173,7 +174,7 @@ func (s SecretGeneratorV1) validate() error {
|
|||||||
// handleFromLiteralSources adds the specified literal source information into the provided secret
|
// handleFromLiteralSources adds the specified literal source information into the provided secret
|
||||||
func handleFromLiteralSources(secret *api.Secret, literalSources []string) error {
|
func handleFromLiteralSources(secret *api.Secret, literalSources []string) error {
|
||||||
for _, literalSource := range literalSources {
|
for _, literalSource := range literalSources {
|
||||||
keyName, value, err := parseLiteralSource(literalSource)
|
keyName, value, err := util.ParseLiteralSource(literalSource)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -187,7 +188,7 @@ func handleFromLiteralSources(secret *api.Secret, literalSources []string) error
|
|||||||
// handleFromFileSources adds the specified file source information into the provided secret
|
// handleFromFileSources adds the specified file source information into the provided secret
|
||||||
func handleFromFileSources(secret *api.Secret, fileSources []string) error {
|
func handleFromFileSources(secret *api.Secret, fileSources []string) error {
|
||||||
for _, fileSource := range fileSources {
|
for _, fileSource := range fileSources {
|
||||||
keyName, filePath, err := parseFileSource(fileSource)
|
keyName, filePath, err := util.ParseFileSource(fileSource)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
load(
|
load(
|
||||||
"@io_bazel_rules_go//go:def.bzl",
|
"@io_bazel_rules_go//go:def.bzl",
|
||||||
"go_library",
|
"go_library",
|
||||||
|
"go_test",
|
||||||
)
|
)
|
||||||
|
|
||||||
go_library(
|
go_library(
|
||||||
@ -43,3 +44,9 @@ filegroup(
|
|||||||
tags = ["automanaged"],
|
tags = ["automanaged"],
|
||||||
visibility = ["//build/visible_to:pkg_kubectl_util_CONSUMERS"],
|
visibility = ["//build/visible_to:pkg_kubectl_util_CONSUMERS"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
go_test(
|
||||||
|
name = "go_default_test",
|
||||||
|
srcs = ["util_test.go"],
|
||||||
|
library = ":go_default_library",
|
||||||
|
)
|
||||||
|
@ -18,7 +18,10 @@ package util
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"path"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
@ -44,3 +47,45 @@ func HashObject(obj runtime.Object, codec runtime.Codec) (string, error) {
|
|||||||
}
|
}
|
||||||
return fmt.Sprintf("%x", md5.Sum(data)), nil
|
return fmt.Sprintf("%x", md5.Sum(data)), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ParseFileSource parses the source given.
|
||||||
|
//
|
||||||
|
// Acceptable formats include:
|
||||||
|
// 1. source-path: the basename will become the key name
|
||||||
|
// 2. source-name=source-path: the source-name will become the key name and
|
||||||
|
// source-path is the path to the key file.
|
||||||
|
//
|
||||||
|
// Key names cannot include '='.
|
||||||
|
func ParseFileSource(source string) (keyName, filePath string, err error) {
|
||||||
|
numSeparators := strings.Count(source, "=")
|
||||||
|
switch {
|
||||||
|
case numSeparators == 0:
|
||||||
|
return path.Base(source), source, nil
|
||||||
|
case numSeparators == 1 && strings.HasPrefix(source, "="):
|
||||||
|
return "", "", fmt.Errorf("key name for file path %v missing.", strings.TrimPrefix(source, "="))
|
||||||
|
case numSeparators == 1 && strings.HasSuffix(source, "="):
|
||||||
|
return "", "", fmt.Errorf("file path for key name %v missing.", strings.TrimSuffix(source, "="))
|
||||||
|
case numSeparators > 1:
|
||||||
|
return "", "", errors.New("Key names or file paths cannot contain '='.")
|
||||||
|
default:
|
||||||
|
components := strings.Split(source, "=")
|
||||||
|
return components[0], components[1], nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ParseLiteralSource parses the source key=val pair into its component pieces.
|
||||||
|
// This functionality is distinguished from strings.SplitN(source, "=", 2) since
|
||||||
|
// it returns an error in the case of empty keys, values, or a missing equals sign.
|
||||||
|
func ParseLiteralSource(source string) (keyName, value string, err error) {
|
||||||
|
// leading equal is invalid
|
||||||
|
if strings.Index(source, "=") == 0 {
|
||||||
|
return "", "", fmt.Errorf("invalid literal source %v, expected key=value", source)
|
||||||
|
}
|
||||||
|
// split after the first equal (so values can have the = character)
|
||||||
|
items := strings.SplitN(source, "=", 2)
|
||||||
|
if len(items) != 2 {
|
||||||
|
return "", "", fmt.Errorf("invalid literal source %v, expected key=value", source)
|
||||||
|
}
|
||||||
|
|
||||||
|
return items[0], items[1], nil
|
||||||
|
}
|
||||||
|
@ -14,11 +14,9 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package kubectl
|
package util
|
||||||
|
|
||||||
import (
|
import "testing"
|
||||||
"testing"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestParseFileSource(t *testing.T) {
|
func TestParseFileSource(t *testing.T) {
|
||||||
cases := []struct {
|
cases := []struct {
|
||||||
@ -91,7 +89,7 @@ func TestParseFileSource(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, tc := range cases {
|
for _, tc := range cases {
|
||||||
key, filepath, err := parseFileSource(tc.input)
|
key, filepath, err := ParseFileSource(tc.input)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if tc.err {
|
if tc.err {
|
||||||
continue
|
continue
|
||||||
@ -173,7 +171,7 @@ func TestParseLiteralSource(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, tc := range cases {
|
for _, tc := range cases {
|
||||||
key, value, err := parseLiteralSource(tc.input)
|
key, value, err := ParseLiteralSource(tc.input)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if tc.err {
|
if tc.err {
|
||||||
continue
|
continue
|
Loading…
Reference in New Issue
Block a user