mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-10 16:42:51 +00:00
add builtin plugins
This commit is contained in:
@@ -68,26 +68,22 @@ func TestKeyValuesFromPlugins(t *testing.T) {
|
|||||||
expected []kv.Pair
|
expected []kv.Pair
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
description: "Create kv.Pairs from plugin",
|
description: "Create kv.Pairs from builtin literals plugin",
|
||||||
sources: []types.KVSource{
|
sources: []types.KVSource{
|
||||||
{
|
{
|
||||||
PluginType: "testonly",
|
PluginType: "builtin",
|
||||||
Name: "testonly",
|
Name: "literals",
|
||||||
Args: []string{"FOO", "BAR", "BAZ"},
|
Args: []string{"FOO=bar", "BAR=baz"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
expected: []kv.Pair{
|
expected: []kv.Pair{
|
||||||
{
|
{
|
||||||
Key: "k_FOO",
|
Key: "FOO",
|
||||||
Value: "v_FOO",
|
Value: "bar",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Key: "k_BAR",
|
Key: "BAR",
|
||||||
Value: "v_BAR",
|
Value: "baz",
|
||||||
},
|
|
||||||
{
|
|
||||||
Key: "k_BAZ",
|
|
||||||
Value: "v_BAZ",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
59
k8sdeps/kv/plugin/builtin/literals.go
Normal file
59
k8sdeps/kv/plugin/builtin/literals.go
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2019 The Kubernetes Authors.
|
||||||
|
|
||||||
|
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 builtin
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"sigs.k8s.io/kustomize/k8sdeps/kv"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Literals takes a list of literals.
|
||||||
|
// Each literal source should be a key and literal value,
|
||||||
|
// e.g. `somekey=somevalue`
|
||||||
|
// It will be similar to kubectl create configmap|secret --from-literal
|
||||||
|
type Literals struct{}
|
||||||
|
|
||||||
|
// Get implements the interface for kv plugins.
|
||||||
|
func (p Literals) Get(root string, args []string) ([]kv.Pair, error) {
|
||||||
|
var kvs []kv.Pair
|
||||||
|
for _, s := range args {
|
||||||
|
k, v, err := parseLiteralSource(s)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
kvs = append(kvs, kv.Pair{Key: k, Value: v})
|
||||||
|
}
|
||||||
|
return kvs, 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], strings.Trim(items[1], "\"'"), nil
|
||||||
|
}
|
||||||
@@ -14,30 +14,32 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// testonly is temporary until we have builtin plugins to use in the tests.
|
|
||||||
|
|
||||||
package plugin
|
package plugin
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"sigs.k8s.io/kustomize/k8sdeps/kv"
|
"fmt"
|
||||||
|
|
||||||
|
"sigs.k8s.io/kustomize/k8sdeps/kv/plugin/builtin"
|
||||||
|
"sigs.k8s.io/kustomize/pkg/ifc"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ Factory = &testonlyFactory{}
|
var _ Factory = &builtinFactory{}
|
||||||
|
|
||||||
func newTestonlyFactory() *testonlyFactory {
|
type builtinFactory struct {
|
||||||
return &testonlyFactory{}
|
plugins map[string]KVSource
|
||||||
}
|
}
|
||||||
|
|
||||||
type testonlyFactory struct{}
|
func newBuiltinFactory(ldr ifc.Loader) *builtinFactory {
|
||||||
|
return &builtinFactory{
|
||||||
func (p testonlyFactory) Get(_ string, args []string) ([]kv.Pair, error) {
|
plugins: map[string]KVSource{
|
||||||
var kvs []kv.Pair
|
"literals": builtin.Literals{},
|
||||||
for _, arg := range args {
|
},
|
||||||
kvs = append(kvs, kv.Pair{Key: "k_" + arg, Value: "v_" + arg})
|
|
||||||
}
|
}
|
||||||
return kvs, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *testonlyFactory) load(_ string) (KVSource, error) {
|
func (p *builtinFactory) load(name string) (KVSource, error) {
|
||||||
return p, nil
|
if plug, ok := p.plugins[name]; ok {
|
||||||
|
return plug, nil
|
||||||
|
}
|
||||||
|
return nil, fmt.Errorf("plugin %s not found", name)
|
||||||
}
|
}
|
||||||
@@ -34,7 +34,7 @@ func NewRegistry(ldr ifc.Loader) Registry {
|
|||||||
ldr: ldr,
|
ldr: ldr,
|
||||||
factories: map[string]Factory{
|
factories: map[string]Factory{
|
||||||
"go": newGoFactory(),
|
"go": newGoFactory(),
|
||||||
"testonly": newTestonlyFactory(),
|
"builtin": newBuiltinFactory(ldr),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -247,11 +247,11 @@ func TestGeneratorPlugins(t *testing.T) {
|
|||||||
secretGenerator:
|
secretGenerator:
|
||||||
- name: bob
|
- name: bob
|
||||||
kvSources:
|
kvSources:
|
||||||
- pluginType: testonly
|
- pluginType: builtin
|
||||||
name: testonly
|
name: literals
|
||||||
args:
|
args:
|
||||||
- FRUIT
|
- FRUIT=apple
|
||||||
- VEGETABLE
|
- VEGETABLE=carrot
|
||||||
`)
|
`)
|
||||||
m, err := th.makeKustTarget().MakeCustomizedResMap()
|
m, err := th.makeKustTarget().MakeCustomizedResMap()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -260,11 +260,11 @@ secretGenerator:
|
|||||||
th.assertActualEqualsExpected(m, `
|
th.assertActualEqualsExpected(m, `
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
data:
|
data:
|
||||||
k_FRUIT: dl9GUlVJVA==
|
FRUIT: YXBwbGU=
|
||||||
k_VEGETABLE: dl9WRUdFVEFCTEU=
|
VEGETABLE: Y2Fycm90
|
||||||
kind: Secret
|
kind: Secret
|
||||||
metadata:
|
metadata:
|
||||||
name: bob-cb9mhbh9gg
|
name: bob-bgtct8h699
|
||||||
type: Opaque
|
type: Opaque
|
||||||
`)
|
`)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user