|
53 | 53 | description: Labels to add to the resources during its creation. |
54 | 54 | type: object |
55 | 55 | type: object |
| 56 | + controllerResources: |
| 57 | + description: Resources requests/limits for Argo Rollout controller |
| 58 | + properties: |
| 59 | + claims: |
| 60 | + description: |- |
| 61 | + Claims lists the names of resources, defined in spec.resourceClaims, |
| 62 | + that are used by this container. |
| 63 | +
|
| 64 | +
|
| 65 | + This is an alpha field and requires enabling the |
| 66 | + DynamicResourceAllocation feature gate. |
| 67 | +
|
| 68 | +
|
| 69 | + This field is immutable. It can only be set for containers. |
| 70 | + items: |
| 71 | + description: ResourceClaim references one entry in PodSpec.ResourceClaims. |
| 72 | + properties: |
| 73 | + name: |
| 74 | + description: |- |
| 75 | + Name must match the name of one entry in pod.spec.resourceClaims of |
| 76 | + the Pod where this field is used. It makes that resource available |
| 77 | + inside a container. |
| 78 | + type: string |
| 79 | + required: |
| 80 | + - name |
| 81 | + type: object |
| 82 | + type: array |
| 83 | + x-kubernetes-list-map-keys: |
| 84 | + - name |
| 85 | + x-kubernetes-list-type: map |
| 86 | + limits: |
| 87 | + additionalProperties: |
| 88 | + anyOf: |
| 89 | + - type: integer |
| 90 | + - type: string |
| 91 | + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ |
| 92 | + x-kubernetes-int-or-string: true |
| 93 | + description: |- |
| 94 | + Limits describes the maximum amount of compute resources allowed. |
| 95 | + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ |
| 96 | + type: object |
| 97 | + requests: |
| 98 | + additionalProperties: |
| 99 | + anyOf: |
| 100 | + - type: integer |
| 101 | + - type: string |
| 102 | + pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ |
| 103 | + x-kubernetes-int-or-string: true |
| 104 | + description: |- |
| 105 | + Requests describes the minimum amount of compute resources required. |
| 106 | + If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, |
| 107 | + otherwise to an implementation-defined value. Requests cannot exceed Limits. |
| 108 | + More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ |
| 109 | + type: object |
| 110 | + type: object |
56 | 111 | env: |
57 | 112 | description: Env lets you specify environment for Rollouts pods |
58 | 113 | items: |
@@ -231,6 +286,10 @@ spec: |
231 | 286 | type: object |
232 | 287 | type: array |
233 | 288 | type: object |
| 289 | + skipNotificationSecretDeployment: |
| 290 | + description: SkipNotificationSecretDeployment lets you specify if |
| 291 | + the argo notification secret should be deployed |
| 292 | + type: boolean |
234 | 293 | version: |
235 | 294 | description: Version defines Argo Rollouts controller tag (optional) |
236 | 295 | type: string |
|
0 commit comments