Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: allow deploying additional kubernetes resources
The `extraDeploy` option is something that is available in many helm charts (expecially bitnami charts). It is useful for deploying extra resources with the release. E.g. with Apisix you could deploy ApisixGlobalRule. This commit adds a very simple version of the extraDeploy. E.g. Using as a string: ``` extraDeploy: - | apiVersion: apisix.apache.org/v2 kind: ApisixGlobalRule metadata: name: global spec: plugins: - name: response-rewrite enable: true config: headers: remove: - Server ``` can also use it as a map: ``` - apiVersion: apisix.apache.org/v2 kind: ApisixGlobalRule metadata: name: global spec: plugins: - name: response-rewrite enable: true config: headers: remove: - Server ```
- Loading branch information