Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 733 for deploymentID (0.2 sec)

  1. pkg/controller/deployment/recreate_test.go

    		_, ctx := ktesting.NewTestContext(t)
    		c, err := NewDeploymentController(ctx, informers.Apps().V1().Deployments(), informers.Apps().V1().ReplicaSets(), informers.Core().V1().Pods(), kc)
    		if err != nil {
    			t.Fatalf("error creating Deployment controller: %v", err)
    		}
    		c.eventRecorder = &record.FakeRecorder{}
    
    		c.scaleDownOldReplicaSetsForRecreate(ctx, oldRSs, test.d)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

      resources:
      - customresourcedefinitions.apiextensions.k8s.io
      - customresourcedefinitions
      verbs:
      - '*'
    - apiGroups:
      - apps
      - extensions
      resources:
      - daemonsets
      - deployments
      - deployments/finalizers
      - ingresses
      - replicasets
      - statefulsets
      verbs:
      - '*'
    - apiGroups:
      - autoscaling
      resources:
      - horizontalpodautoscalers
      verbs:
      - '*'
    - apiGroups:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  3. cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["list", "watch"]
      - apiGroups: [""]
        resources: ["replicationcontrollers/scale"]
        verbs: ["get", "update"]
      - apiGroups: ["apps"]
        resources: ["deployments/scale", "replicasets/scale"]
        verbs: ["get", "update"]
    # Remove the configmaps rule once below issue is fixed:
    # kubernetes-incubator/cluster-proportional-autoscaler#16
      - apiGroups: [""]
        resources: ["configmaps"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/cni_race_test.go

    			t.Log("Rollout restart echo instance to get a broken instance")
    			rolloutCmd := fmt.Sprintf("kubectl rollout restart deployment -n %s", ns.Name())
    			if _, err := shell.Execute(true, rolloutCmd); err != nil {
    				t.Fatalf("failed to rollout restart deployments %v", err)
    			}
    			waitForBrokenPodOrFail(t, c, ns)
    
    			t.Log("Redeploy CNI and verify repair takes effect by evicting the broken pod")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. manifests/charts/gateway/README.md

    following the guidance below.
    If you are able to, a clean installation is simpler. However, this often requires an external IP migration which can be challenging.
    
    WARNING: when installing over an existing deployment, the two deployments will be merged together by Helm, which may lead to unexpected results.
    
    #### Legacy Gateway Helm charts
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/initializer.go

    		apiPath      string
    	}{
    		{v1.SchemeGroupVersion, &v1.ReplicationController{}, "replicationcontrollers", "/api"},
    		{v1.SchemeGroupVersion, &v1.Pod{}, "pods", "/api"},
    
    		{appsv1.SchemeGroupVersion, &appsv1.Deployment{}, "deployments", "/apis"},
    		{appsv1.SchemeGroupVersion, &appsv1.DaemonSet{}, "daemonsets", "/apis"},
    		{appsv1.SchemeGroupVersion, &appsv1.ReplicaSet{}, "replicasets", "/apis"},
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. tests/integration/pilot/multicluster_test.go

    `).ApplyOrFail(t)
    
    			// create a new istiod pod using the template from the deployment, but not managed by the deployment
    			t.Logf("creating pod %s/%s", ns, pod)
    			deps, err := primary.Kube().AppsV1().
    				Deployments(ns).List(context.TODO(), metav1.ListOptions{LabelSelector: "app=istiod"})
    			if err != nil {
    				t.Fatal(err)
    			}
    			if len(deps.Items) == 0 {
    				t.Skip("no deployments with label app=istiod")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/gateway.yaml.injected

              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: istio-ingressgateway
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/istio-ingressgateway
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: gcr.io/istio-testing/proxyv2:latest
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. manifests/addons/gen.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    set -eux
    
    # This script sets up the plain text rendered deployments for addons
    # See samples/addons/README.md for more information
    
    ADDONS="${WD}/../../samples/addons"
    DASHBOARDS="${WD}/dashboards"
    mkdir -p "${ADDONS}"
    TMP=$(mktemp -d)
    LOKI_VERSION=${LOKI_VERSION:-"6.6.3"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/grpc-agent.yaml.injected

                fieldRef:
                  fieldPath: spec.nodeName
            - name: ISTIO_META_WORKLOAD_NAME
              value: grpc
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/grpc
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            - name: ISTIO_META_DNS_CAPTURE
              value: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top