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