forked from kubernetes-sigs/kustomize
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubernetes-sigs#951 from Liujingfang1/generatorplu…
…gins add support for generator go-plugins
- Loading branch information
Showing
4 changed files
with
250 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/* | ||
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 plugins | ||
|
||
import ( | ||
"fmt" | ||
"path/filepath" | ||
"plugin" | ||
|
||
"github.com/pkg/errors" | ||
"sigs.k8s.io/kustomize/pkg/pgmconfig" | ||
"sigs.k8s.io/kustomize/pkg/resid" | ||
"sigs.k8s.io/kustomize/pkg/resmap" | ||
"sigs.k8s.io/kustomize/pkg/resource" | ||
) | ||
|
||
const generatorSymbol = "Generator" | ||
|
||
type Generatable interface { | ||
Generate() (resmap.ResMap, error) | ||
} | ||
|
||
type generatorLoader struct { | ||
pluginDir string | ||
enabled bool | ||
rf *resmap.Factory | ||
} | ||
|
||
func NewGeneratorLoader(b bool, f *resmap.Factory) generatorLoader { | ||
return generatorLoader{ | ||
pluginDir: filepath.Join(pgmconfig.ConfigRoot(), pgmconfig.PluginsDir), | ||
enabled: b, | ||
rf: f, | ||
} | ||
} | ||
|
||
func (l generatorLoader) Load(rm resmap.ResMap) (resmap.ResMap, error) { | ||
if len(rm) == 0 { | ||
return nil, nil | ||
} | ||
if !l.enabled { | ||
return nil, fmt.Errorf("plugin is not enabled") | ||
} | ||
var result resmap.ResMap | ||
for id, res := range rm { | ||
r, err := l.load(id, res) | ||
if err != nil { | ||
return nil, err | ||
} | ||
result, err = resmap.MergeWithErrorOnIdCollision(result, r) | ||
if err != nil { | ||
return nil, err | ||
} | ||
} | ||
return result, nil | ||
} | ||
|
||
func (l generatorLoader) load(id resid.ResId, res *resource.Resource) (resmap.ResMap, error) { | ||
fileName := filepath.Join(l.pluginDir, id.Gvk().Kind+".so") | ||
goPlugin, err := plugin.Open(fileName) | ||
if err != nil { | ||
return nil, fmt.Errorf("plugin %s file not opened", fileName) | ||
} | ||
|
||
symbol, err := goPlugin.Lookup(generatorSymbol) | ||
if err != nil { | ||
return nil, fmt.Errorf("plugin %s fails lookup", fileName) | ||
} | ||
|
||
c, ok := symbol.(Configurable) | ||
if !ok { | ||
return nil, fmt.Errorf("plugin %s not configurable", fileName) | ||
} | ||
err = c.Config(res) | ||
if err != nil { | ||
return nil, errors.Wrapf(err, "plugin %s fails configuration", fileName) | ||
} | ||
|
||
g, ok := c.(Generatable) | ||
if !ok { | ||
return nil, fmt.Errorf("plugin %s not a transformer", fileName) | ||
} | ||
return g.Generate() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
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 target_test | ||
|
||
import ( | ||
"os" | ||
"path/filepath" | ||
"testing" | ||
|
||
"sigs.k8s.io/kustomize/pkg/pgmconfig" | ||
"sigs.k8s.io/kustomize/pkg/types" | ||
) | ||
|
||
func writeGenerator(th *KustTestHarness, path string) { | ||
th.writeF(path, ` | ||
apiVersion: strings.microwoosh.com/v1 | ||
kind: ServiceGenerator | ||
metadata: | ||
name: myServiceGenerator | ||
service: my-service | ||
port: "12345" | ||
`) | ||
} | ||
|
||
func TestGeneratorPlugin(t *testing.T) { | ||
dir, err := filepath.Abs("../../..") | ||
if err != nil { | ||
t.Errorf("unexpected error %v", err) | ||
} | ||
os.Setenv(pgmconfig.XDG_CONFIG_HOME, dir) | ||
defer os.Unsetenv(pgmconfig.XDG_CONFIG_HOME) | ||
|
||
err = buildGoPlugins(dir, "ServiceGenerator") | ||
if err != nil { | ||
t.Errorf("unexpected error %v", err) | ||
} | ||
|
||
th := NewKustTestHarnessWithPluginConfig( | ||
t, "/app", types.PluginConfig{GoEnabled: true}) | ||
th.writeK("/app", ` | ||
generators: | ||
- serviceGenerator.yaml | ||
`) | ||
writeGenerator(th, "/app/serviceGenerator.yaml") | ||
m, err := th.makeKustTarget().MakeCustomizedResMap() | ||
if err != nil { | ||
t.Fatalf("Err: %v", err) | ||
} | ||
th.assertActualEqualsExpected(m, ` | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: dev | ||
name: my-service | ||
spec: | ||
ports: | ||
- port: 12345 | ||
selector: | ||
app: dev | ||
`) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
package main | ||
|
||
import ( | ||
"bytes" | ||
"text/template" | ||
|
||
"sigs.k8s.io/kustomize/k8sdeps/kunstruct" | ||
"sigs.k8s.io/kustomize/pkg/ifc" | ||
"sigs.k8s.io/kustomize/pkg/resmap" | ||
"sigs.k8s.io/kustomize/pkg/resource" | ||
) | ||
|
||
type plugin struct { | ||
ServiceName string | ||
Port string | ||
} | ||
|
||
var Generator plugin | ||
|
||
var manifest = ` | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: dev | ||
name: {{.ServiceName}} | ||
spec: | ||
ports: | ||
- port: {{.Port}} | ||
selector: | ||
app: dev | ||
` | ||
|
||
func (p *plugin) Config(k ifc.Kunstructured) error { | ||
var err error | ||
p.ServiceName, err = k.GetFieldValue("service") | ||
if err != nil { | ||
return err | ||
} | ||
p.Port, err = k.GetFieldValue("port") | ||
if err != nil { | ||
return err | ||
} | ||
return nil | ||
} | ||
|
||
func (p *plugin) Generate() (resmap.ResMap, error) { | ||
var buf bytes.Buffer | ||
|
||
temp := template.Must(template.New("manifest").Parse(manifest)) | ||
err := temp.Execute(&buf, p) | ||
if err != nil { | ||
return nil, err | ||
} | ||
rf := resmap.NewFactory(resource.NewFactory(kunstruct.NewKunstructuredFactoryImpl())) | ||
return rf.NewResMapFromBytes(buf.Bytes()) | ||
} |