-
Notifications
You must be signed in to change notification settings - Fork 64
Open
Description
yaml x-anchors are being deleted and inline values replaced.
the whole point of having the anchors is to make it easy to know what values require changing.
x-anchors:
environment: &environment "alpha"
internalDnsName: &internalDnsName "test-app.example.com"
serviceAccountName: &serviceAccountName svcacct
argo:
clustersgroup:
- alpha
deployment:
environment: *environment
serviceName: test-application
serviceAccount:
create: false
name: *serviceAccountName#kyaml
---
{
x-anchors: {
environment: "alpha",
internalDnsName: "test-app.example.com",
serviceAccountName: "svcacct",
},
argo: {
clustersgroup: [
"alpha",
],
},
deployment: {
environment: "alpha",
serviceName: "test-application",
serviceAccount: {
create: false,
name: "svcacct",
},
[...]
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels