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.
2 parents b8b88f6 + 0213da1 commit e732c32Copy full SHA for e732c32
Tiltfile
@@ -151,11 +151,11 @@ COPY manager .
151
# Build CAPZ and add feature gates
152
def capz():
153
# Apply the kustomized yaml for this provider
154
- yaml = str(kustomizesub("./config"))
155
substitutions = settings.get("kustomize_substitutions", {})
156
for substitution in substitutions:
157
- value = substitutions[substitution]
158
- yaml = yaml.replace("${" + substitution + "}", value)
+ os.putenv(substitution, substitutions[substitution])
+ yaml = str(kustomizesub("./config"))
+
159
160
# add extra_args if they are defined
161
if settings.get("extra_args"):
0 commit comments