Last active
November 20, 2024 09:42
-
-
Save dinvlad/3fd1ed26a39a42ddfb4f7faa8b7208a5 to your computer and use it in GitHub Desktop.
Config Connector customization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: customize.core.cnrm.cloud.google.com/v1beta1 | |
kind: ControllerResource | |
metadata: | |
name: cnrm-controller-manager | |
spec: | |
replicas: 1 | |
containers: | |
- name: manager | |
resources: | |
limits: | |
cpu: 200m | |
memory: 512Mi | |
requests: | |
cpu: 30m | |
memory: 200Mi | |
--- | |
apiVersion: customize.core.cnrm.cloud.google.com/v1beta1 | |
kind: ControllerResource | |
metadata: | |
name: cnrm-webhook-manager | |
spec: | |
replicas: 2 | |
containers: | |
- name: webhook | |
resources: | |
limits: | |
memory: 128Mi | |
requests: | |
cpu: 10m | |
memory: 128Mi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment