silly-accountant-45583
08/11/2023, 11:17 AMswift-garage-61180
08/11/2023, 11:59 AMkubernetes provider twice, and use it for different environments. Here's an example:
providers:
...
- name: kubernetes
environments: [dev]
...
buildMode: cluster-buildkit
- name: kubernetes
environments: [ci, preview, staging]
...
buildMode: kaniko
Here, we're using cluster-buildkit for the dev environment, and kaniko for the ci, preview and staging environments (each of those would have been defined under environments in the project config).
Does that answer your question?silly-accountant-45583
08/12/2023, 12:30 PM