github.com/argoproj/argo-cd/v3@v3.2.1/manifests/dev-tilt/kustomization.yaml (about)

     1  # This manifest is used by Tilt to deploy the argocd resources to the cluster.
     2  namespace: argocd
     3  
     4  resources:
     5    - namespace.yaml
     6    - ui-deployment.yaml
     7    - ../cluster-install-with-hydrator
     8  
     9  patches:
    10    - target:
    11        group: apps
    12        version: v1
    13        kind: Deployment
    14        name: argocd-server
    15      patch: |-
    16        - op: replace
    17          path: /spec/template/spec/containers/0/image
    18          value: argocd
    19        - op: remove
    20          path: /spec/template/spec/containers/0/securityContext
    21        - op: add
    22          path: /spec/template/spec/containers/0/ports/0
    23          value:
    24            name: debug
    25            containerPort: 2345
    26  
    27    - target:
    28        group: apps
    29        version: v1
    30        kind: Deployment
    31        name: argocd-repo-server
    32      patch: |-
    33        - op: replace
    34          path: /spec/template/spec/containers/0/image
    35          value: argocd
    36        - op: replace
    37          path: /spec/template/spec/initContainers/0/image
    38          value: argocd-job
    39        - op: remove
    40          path: /spec/template/spec/containers/0/securityContext
    41        - op: remove
    42          path: /spec/template/spec/initContainers/0/securityContext
    43        - op: add
    44          path: /spec/template/spec/containers/0/ports/0
    45          value:
    46            name: debug
    47            containerPort: 2345
    48  
    49    - target:
    50        group: apps
    51        version: v1
    52        kind: Deployment
    53        name: argocd-commit-server
    54      patch: |-
    55        - op: replace
    56          path: /spec/template/spec/containers/0/image
    57          value: argocd
    58        - op: remove
    59          path: /spec/template/spec/containers/0/securityContext
    60        - op: add
    61          path: /spec/template/spec/containers/0/ports/0
    62          value:
    63            name: debug
    64            containerPort: 2345
    65  
    66    - target:
    67        group: apps
    68        version: v1
    69        kind: StatefulSet
    70        name: argocd-application-controller
    71      patch: |-
    72        - op: replace
    73          path: /spec/template/spec/containers/0/image
    74          value: argocd
    75        - op: remove
    76          path: /spec/template/spec/containers/0/securityContext
    77        - op: add
    78          path: /spec/template/spec/containers/0/ports/0
    79          value:
    80            name: debug
    81            containerPort: 2345
    82    - target:
    83        group: apps
    84        version: v1
    85        kind: Deployment
    86        name: argocd-dex-server
    87      patch: |-
    88        - op: replace
    89          path: /spec/template/spec/initContainers/0/image
    90          value: argocd-job
    91        - op: remove
    92          path: /spec/template/spec/initContainers/0/securityContext
    93    - target:
    94        group: apps
    95        version: v1
    96        kind: Deployment
    97        name: argocd-notifications-controller
    98      patch: |-
    99        - op: replace
   100          path: /spec/template/spec/containers/0/image
   101          value: argocd
   102        - op: remove
   103          path: /spec/template/spec/containers/0/securityContext
   104        - op: remove
   105          path: /spec/template/spec/securityContext
   106        - op: add
   107          path: /spec/template/spec/containers/0/ports
   108          value:
   109            - name: debug
   110              containerPort: 2345
   111            - name: metrics
   112              containerPort: 9001
   113  
   114    - target:
   115        group: apps
   116        version: v1
   117        kind: Deployment
   118        name: argocd-applicationset-controller
   119      patch: |-
   120        - op: replace
   121          path: /spec/template/spec/containers/0/image
   122          value: argocd
   123        - op: remove
   124          path: /spec/template/spec/containers/0/securityContext
   125        - op: add
   126          path: /spec/template/spec/containers/0/ports/0
   127          value:
   128            name: debug
   129            containerPort: 2345
   130  
   131    - target:
   132        group: apps
   133        version: v1
   134        kind: Deployment
   135        name: argocd-redis
   136      patch: |-
   137        - op: replace
   138          path: /spec/template/spec/initContainers/0/image
   139          value: argocd-job
   140        - op: remove
   141          path: /spec/template/spec/initContainers/0/securityContext