Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,020 for deploymentID (0.17 sec)

  1. pkg/controller/deployment/sync.go

    //  2. Get new RS this deployment targets (whose pod template matches deployment's), and update new RS's revision number to (maxOldV + 1),
    //     only if its revision number is smaller than (maxOldV + 1). If this step failed, we'll update it in the next deployment sync loop.
    //  3. Copy new RS's revision number to deployment (update deployment's revision). If this step failed, we'll update it in the next deployment sync loop.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  2. manifests/charts/istio-operator/templates/deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      namespace: {{.Release.Namespace}}
      name: istio-operator{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    spec:
      replicas: 1
      revisionHistoryLimit: {{ .Values.deploymentHistory }}
      selector:
        matchLabels:
          name: istio-operator
      template:
        metadata:
          labels:
            name: istio-operator
            {{- range $key, $val := .Values.podLabels }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1/conversion_test.go

    	replica := utilpointer.Int32(2)
    	rollbackTo := new(apps.RollbackConfig)
    	rollbackTo.Revision = int64(2)
    	testcases := map[string]struct {
    		deployment1 *apps.Deployment
    		deployment2 *appsv1.Deployment
    	}{
    		"Deployment Conversion 1": {
    			deployment1: &apps.Deployment{
    				Spec: apps.DeploymentSpec{
    					Replicas:   *replica,
    					RollbackTo: rollbackTo,
    					Template: api.PodTemplateSpec{
    						Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. pkg/controller/deployment/rollback.go

    		//
    		// For example,
    		// A Deployment has old RS1 with annotation {change-cause:create}, and new RS2 {change-cause:edit}.
    		// Note that both annotations are copied from Deployment, and the Deployment should be annotated {change-cause:edit} as well.
    		// Now, rollback Deployment to RS1, we should update Deployment's pod-template and also copy annotation from RS1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. 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)
  6. pkg/apis/apps/v1beta2/conversion_test.go

    	replica := utilpointer.Int32(2)
    	rollbackTo := new(apps.RollbackConfig)
    	rollbackTo.Revision = int64(2)
    	testcases := map[string]struct {
    		deployment1 *apps.Deployment
    		deployment2 *v1beta2.Deployment
    	}{
    		"Deployment Conversion 1": {
    			deployment1: &apps.Deployment{
    				Spec: apps.DeploymentSpec{
    					Replicas:   *replica,
    					RollbackTo: rollbackTo,
    					Template: api.PodTemplateSpec{
    						Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  7. 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)
  8. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should generate a warning: two services using that deployment
    # using the same port but different protocol.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiple-svc-multiple-prot
      namespace: bookinfo
      labels:
        app: details
        version: v1
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. cluster/addons/fluentd-gcp/scaler-deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: fluentd-gcp-scaler
      namespace: kube-system
      labels:
        k8s-app: fluentd-gcp-scaler
        version: v0.5.1
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      selector:
        matchLabels:
          k8s-app: fluentd-gcp-scaler
      template:
        metadata:
          labels:
            k8s-app: fluentd-gcp-scaler
        spec:
          serviceAccountName: fluentd-gcp-scaler
          containers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 17:58:57 UTC 2023
    - 972 bytes
    - Viewed (0)
  10. 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)
Back to top