Skip to content

Commit 9e2d927

Browse files
authored
feat(kubernetes): add namespace to apply preamble (grafana#23)
1 parent d81d987 commit 9e2d927

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

pkg/kubernetes/kubectl.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -128,14 +128,15 @@ func (k Kubectl) Get(namespace, kind, name string) (map[string]interface{}, erro
128128
}
129129

130130
// Apply applies the given yaml to the cluster
131-
func (k Kubectl) Apply(yaml string) error {
131+
func (k Kubectl) Apply(yaml, namespace string) error {
132132
if err := k.setupContext(); err != nil {
133133
return err
134134
}
135135

136136
reader := bufio.NewReader(os.Stdin)
137-
fmt.Printf(`!!! Applying to cluster '%s' at '%s' using context '%s'.
138-
!!! Please type 'yes' to perform: `,
137+
fmt.Printf(`Applying to namespace '%s' of cluster '%s' at '%s' using context '%s'.
138+
Please type 'yes' to perform: `,
139+
alert(namespace),
139140
alert(k.cluster.Get("name").MustStr()),
140141
alert(k.cluster.Get("cluster.server").MustStr()),
141142
alert(k.context.Get("name").MustStr()),

pkg/kubernetes/kubernetes.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func (k *Kubernetes) Apply(state []Manifest) error {
7474
if err != nil {
7575
return err
7676
}
77-
return k.client.Apply(yaml)
77+
return k.client.Apply(yaml, k.Spec.Namespace)
7878
}
7979

8080
// Diff takes the desired state and returns the differences from the cluster

0 commit comments

Comments
 (0)