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 274e026 commit 4d7fa4dCopy full SHA for 4d7fa4d
test/dummies/v1beta2/vars.go
@@ -364,11 +364,12 @@ func SetDummyIsoNetToNameOnly() {
364
365
func SetDummyBootstrapSecretVar() {
366
BootstrapSecretName := "such-secret-much-wow"
367
+ BootstrapSecretValue := "{{ ds.meta_data.hostname }}"
368
BootstrapSecret = &corev1.Secret{
369
ObjectMeta: metav1.ObjectMeta{
370
Namespace: ClusterNameSpace,
371
Name: BootstrapSecretName},
- Data: map[string][]byte{"value": make([]byte, 0)}}
372
+ Data: map[string][]byte{"value": []byte(BootstrapSecretValue)}}
373
}
374
375
// Sets cluster spec to specified network.
0 commit comments