Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 404 for deploymentID (0.2 sec)

  1. manifests/charts/gateway/templates/deployment.yaml

    apiVersion: apps/v1
    kind: {{ .Values.kind | default "Deployment" }}
    metadata:
      name: {{ include "gateway.name" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4}}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      {{- if not .Values.autoscaling.enabled }}
      {{- with .Values.replicaCount }}
      replicas: {{ . }}
      {{- end }}
      {{- end }}
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- $subsets := .Subsets }}
    {{- $cluster := .Cluster }}
    {{- range $i, $subset := $subsets }}
    {{- range $revision, $version := $revVerMap }}
    apiVersion: apps/v1
    {{- if $.StatefulSet }}
    kind: StatefulSet
    {{- else }}
    kind: Deployment
    {{- end }}
    metadata:
    {{- if $.Compatibility }}
      name: {{ $.Service }}-{{ $subset.Version }}-{{ $revision }}
    {{- else }}
      name: {{ $.Service }}-{{ $subset.Version }}
    {{- end }}
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        app: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
        istio: pilot
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/deployment/services.go

    				m.Line = line
    			}
    
    			// Reporting the message for the deployment, port and conflicting services.
    			c.Report(gvk.Deployment, m)
    		}
    	}
    }
    
    // findMatchingServices returns an slice of Services that matches with deployment's pods.
    func (s *ServiceAssociationAnalyzer) findMatchingServices(r *resource.Instance, c analysis.Context) []ServiceSpecWithName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pkg/controller/deployment/deployment_controller_test.go

    func (f *fixture) expectUpdateDeploymentStatusAction(d *apps.Deployment) {
    	action := core.NewUpdateAction(schema.GroupVersionResource{Resource: "deployments"}, d.Namespace, d)
    	action.Subresource = "status"
    	f.actions = append(f.actions, action)
    }
    
    func (f *fixture) expectUpdateDeploymentAction(d *apps.Deployment) {
    	action := core.NewUpdateAction(schema.GroupVersionResource{Resource: "deployments"}, d.Namespace, d)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/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-egressgateway" }}
      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)
  7. 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)
  8. 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)
  9. pkg/test/framework/components/echo/common/deployment/echos.go

    type Echos struct {
    	// NS is the list of echo namespaces.
    	NS []EchoNamespace
    
    	// External (out-of-mesh) deployments
    	External External
    
    	// All echo instances.
    	All echo.Services
    }
    
    func (e *Echos) Echos() *Echos {
    	return e
    }
    
    // New echo deployment with the given configuration.
    func New(ctx resource.Context, cfg Config) (*Echos, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. pkg/controller/deployment/deployment_controller.go

    	logger.V(4).Info("Started syncing deployment", "deployment", klog.KRef(namespace, name), "startTime", startTime)
    	defer func() {
    		logger.V(4).Info("Finished syncing deployment", "deployment", klog.KRef(namespace, name), "duration", time.Since(startTime))
    	}()
    
    	deployment, err := dc.dLister.Deployments(namespace).Get(name)
    	if errors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top