File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -22,4 +22,4 @@ ocp-manifests: $(RELEASE_DIR) $(KUSTOMIZE) check-env ## Builds openshift specifi
22
22
$(KUSTOMIZE ) build > infrastructure-components.yaml
23
23
# Generate provider manifests.
24
24
# TODO: load the provider-version dynamically at rebase time when this is invoked by the Rebase Bot during one of its lifecycle hooks.
25
- cd tools && $(MANIFESTS_GEN ) --provider-name " azure" --provider-type " InfrastructureProvider" --provider-version " ${PROVIDER_VERSION} " --base-path " ../../" --manifests-path " ../manifests"
25
+ cd tools && $(MANIFESTS_GEN ) --provider-name " azure" --provider-type " InfrastructureProvider" --provider-version " ${PROVIDER_VERSION} " --base-path " ../../" --manifests-path " ../manifests" --kustomize-dir= " openshift "
Original file line number Diff line number Diff line change @@ -3,3 +3,7 @@ kind: Kustomization
3
3
4
4
resources :
5
5
- ../config/default
6
+
7
+ # This field is deprecated in Kustomize v5; however, we rely on an earlier version and cannot use `patches` yet.
8
+ patchesStrategicMerge :
9
+ - ./patches/disable-aso.yaml
Original file line number Diff line number Diff line change
1
+ $patch : delete
2
+ apiVersion : apps/v1
3
+ kind : Deployment
4
+ metadata :
5
+ name : azureserviceoperator-controller-manager
6
+ namespace : azureserviceoperator-system # This patch is processed before manifests-gen updates the namespace
You can’t perform that action at this time.
0 commit comments