-
Notifications
You must be signed in to change notification settings - Fork 192
Conversation
Hi @wjun! And thank you for opening your first Pull Request. Someone will review it soon. Thank you for committing to making Tanzu Framework better. |
Cluster Generation A/B Results: |
Codecov Report
@@ Coverage Diff @@
## main #3282 +/- ##
==========================================
- Coverage 46.65% 45.74% -0.91%
==========================================
Files 400 425 +25
Lines 39722 41282 +1560
==========================================
+ Hits 18531 18884 +353
- Misses 19498 20687 +1189
- Partials 1693 1711 +18
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
4bcf342
to
00908cc
Compare
Cluster Generation A/B Results: |
00908cc
to
59bdeef
Compare
Cluster Generation A/B Results: |
59bdeef
to
08101e9
Compare
Cluster Generation A/B Results: |
08101e9
to
06de4b2
Compare
Cluster Generation A/B Results: |
06de4b2
to
c6cfd7a
Compare
Cluster Generation A/B Results: |
c6cfd7a
to
02eb9d4
Compare
Cluster Generation A/B Results: |
02eb9d4
to
f184c87
Compare
Cluster Generation A/B Results: |
f184c87
to
6e7bb99
Compare
Cluster Generation A/B Results: |
6e7bb99
to
6d68b3b
Compare
Cluster Generation A/B Results: |
6d68b3b
to
b00becb
Compare
Cluster Generation A/B Results: |
b00becb
to
e840c7b
Compare
Cluster Generation A/B Results: |
e840c7b
to
b8f66bb
Compare
b8f66bb
to
9363ddb
Compare
Cluster Generation A/B Results: |
subnets: | ||
- name: ${AZURE_CONTROL_PLANE_SUBNET_NAME} | ||
- name: #@ data.values.AZURE_CONTROL_PLANE_SUBNET_NAME |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Jun, just want to learn the code, what's the difference between ${var}
and #@ data.value.var
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
${var} is deprecated and should not be used in ClusterClass because ytt cli can not interpolate it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ${var} will not be replaced in the package until cc topology controller processes it, while data.value.var will be replaced with value when the package is installed. ${var} is blocked by azureclustertemplate admission controller which has some subnet name regex check not allowing $ and {}, For this case, we must use data.values.var format. Ideally, we should remove ${var} from all cc related yamls.
Make azure cc dev plan creation work.
What this PR does / why we need it
Make azure cc dev plan creation work
Which issue(s) this PR fixes
Fixes #
Describe testing done for PR
Release note
Additional information
Special notes for your reviewer