Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,205 for mydeployment (0.24 sec)

  1. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name | default "istio-ingressgateway" }}
      namespace: {{ .Release.Namespace }}
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. hack/testdata/deployment-label-change1.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: nginx1
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx1
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 353 bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/metrics-server-deployment.yaml

        addonmanager.kubernetes.io/mode: EnsureExists
    data:
      NannyConfiguration: |-
        apiVersion: nannyconfig/v1alpha1
        kind: NannyConfiguration
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: metrics-server-v0.7.1
      namespace: kube-system
      labels:
        k8s-app: metrics-server
        addonmanager.kubernetes.io/mode: Reconcile
        version: v0.7.1
    spec:
      selector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. hack/testdata/deployment-with-UnixUserID.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: deployment-with-unixuserid
      labels:
        app: nginx
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: nginx
      template:
        metadata:
          labels:
            app: nginx
        spec:
          containers:
          - name: nginx
            image: nginx:1.7.9
          securityContext:
            runAsNonRoot: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 383 bytes
    - Viewed (0)
  5. hack/testdata/deployment-label-change3.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      resourceVersion: "99"
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: invalid
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx3
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 378 bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- $gateway := index .Values "gateways" "istio-egressgateway" }}
    {{- if eq $gateway.injectionTemplate "" }}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/typha-vertical-autoscaler-deployment.yaml

    kind: Deployment
    apiVersion: apps/v1
    metadata:
      name: calico-typha-vertical-autoscaler
      namespace: kube-system
      labels:
        k8s-app: calico-typha-autoscaler
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      replicas: 1
      selector:
        matchLabels:
          k8s-app: calico-typha-autoscaler
      template:
        metadata:
          labels:
            k8s-app: calico-typha-autoscaler
        spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/deployment-service-no-selector.yaml

    metadata:
      name: svc-no-selector
      namespace: default
    spec:
      ports:
        - name: https
          port: 443
          protocol: TCP
          targetPort: 6443
    ---
    # this deployment is not associated with any service, so it should generate a warning
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v2
      namespace: default
      labels:
        app: helloworld
        version: v2
    spec:
      replicas: 1
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 03:43:16 UTC 2023
    - 894 bytes
    - Viewed (0)
  9. hack/testdata/deployment-label-change2.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: nginx
      resourceVersion: "99"
      labels:
        name: nginx
    spec:
      selector:
        matchLabels:
          name: nginx2
      replicas: 3
      template:
        metadata:
          labels:
            name: nginx2
        spec:
          containers:
          - name: nginx
            image: registry.k8s.io/nginx:test-cmd
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 377 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/deployment-multi-service-different-ns.yaml

    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo2
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should not generate a warning: although two services using that deployment
    # using the same port, they are in different namespaces.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: conflicting-ports
      namespace: bookinfo
      labels:
        app: conflicting-ports
        version: v1
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top