We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17fdfed commit e9938cbCopy full SHA for e9938cb
cmd/config/internal/commands/e2e/e2econtainerconfig/main.go
@@ -8,6 +8,7 @@ import (
8
"os"
9
"strconv"
10
11
+ metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
12
"sigs.k8s.io/kustomize/kyaml/fn/framework"
13
"sigs.k8s.io/kustomize/kyaml/fn/framework/command"
14
"sigs.k8s.io/kustomize/kyaml/kio"
@@ -16,6 +17,9 @@ import (
16
17
18
// Config defines the ResourceList.functionConfig schema.
19
type Config struct {
20
+ metav1.TypeMeta `json:",inline"`
21
+ metav1.ObjectMeta `json:"metadata,omitempty"`
22
+
23
// Data contains configuration data for the Example
24
// Nest values under Data so that the function can accept a ConfigMap as its
25
// functionConfig (`run` generates a ConfigMap for the functionConfig when run with --)
0 commit comments