@@ -104,14 +104,14 @@ var (
104
104
// Types used to de-serialize the tilt-settings.yaml/json file from the Cluster API repository.
105
105
106
106
type tiltSettings struct {
107
- Debug map [string ]tiltSettingsDebugConfig `json:"debug,omitempty"`
108
- ExtraArgs map [string ]tiltSettingsExtraArgs `json:"extra_args,omitempty"`
109
- DeployCertManager * bool `json:"deploy_cert_manager,omitempty"`
110
- DeployObservability []string `json:"deploy_observability,omitempty"`
111
- DeployKustomizations map [ string ]string `json:"deploy_kustomizations ,omitempty"`
112
- EnableProviders []string `json:"enable_providers ,omitempty"`
113
- AllowedContexts []string `json:"allowed_contexts ,omitempty"`
114
- ProviderRepos [ ]string `json:"provider_repos ,omitempty"`
107
+ Debug map [string ]tiltSettingsDebugConfig `json:"debug,omitempty"`
108
+ ExtraArgs map [string ]tiltSettingsExtraArgs `json:"extra_args,omitempty"`
109
+ DeployCertManager * bool `json:"deploy_cert_manager,omitempty"`
110
+ DeployObservability []string `json:"deploy_observability,omitempty"`
111
+ EnableProviders [ ]string `json:"enable_providers ,omitempty"`
112
+ AllowedContexts []string `json:"allowed_contexts ,omitempty"`
113
+ ProviderRepos []string `json:"provider_repos ,omitempty"`
114
+ AdditionalKustomizations map [ string ]string `json:"additional_kustomizations ,omitempty"`
115
115
}
116
116
117
117
type tiltSettingsDebugConfig struct {
@@ -309,7 +309,7 @@ func tiltResources(ctx context.Context, ts *tiltSettings) error {
309
309
)
310
310
}
311
311
312
- for name , path := range ts .DeployKustomizations {
312
+ for name , path := range ts .AdditionalKustomizations {
313
313
name := fmt .Sprintf ("%s.kustomization" , name )
314
314
tasks [name ] = sequential (
315
315
kustomizeTask (path , fmt .Sprintf ("%s.yaml" , name )),
0 commit comments