Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AppsV1 (0.17 sec)

  1. istioctl/pkg/util/handlers/handlers_test.go

    				},
    			},
    		},
    		Status: corev1.PodStatus{
    			Phase: corev1.PodRunning,
    		},
    	}
    }
    
    func attachDeploy(ns string) *appsv1.Deployment {
    	return &appsv1.Deployment{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: ns,
    		},
    		Spec: appsv1.DeploymentSpec{},
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jun 09 18:17:49 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/operator-common.go

    	return vals, manifest, err
    }
    
    // deploymentExists returns true if the given deployment in the namespace exists.
    func deploymentExists(cs kubernetes.Interface, namespace, name string) (bool, error) {
    	d, err := cs.AppsV1().Deployments(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    	if err != nil {
    		return false, err
    	}
    	return d != nil, nil
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sat Dec 17 02:25:04 GMT 2022
    - 3.8K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck.go

    	}
    	return nil
    }
    
    func checkPilot(cli kube.CLIClient, namespace string, messages *diag.Messages) error {
    	deployments, err := cli.Kube().AppsV1().Deployments(namespace).List(context.TODO(), metav1.ListOptions{
    		LabelSelector: "app=istiod",
    	})
    	if err != nil {
    		return err
    	}
    	for _, deployment := range deployments.Items {
    		scopingImpacted := false
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  4. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    			return err
    		}
    		return f(configWriter)
    	}
    }
    
    func PodOnNodeFromDaemonset(node string, name, namespace string, client kube.Client) (types.NamespacedName, error) {
    	ds, err := client.Kube().AppsV1().DaemonSets(namespace).Get(context.Background(), name, metav1.GetOptions{})
    	if err != nil {
    		return types.NamespacedName{}, err
    	}
    	selector := ds.Spec.Selector
    	if selector == nil {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 13:11:40 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.9.md

        - [**Network**](#network-2)
        - [**Storage**](#storage-2)
        - [**Scheduling**](#scheduling-1)
        - [**Node**](#node-2)
      - [Notable Changes](#notable-changes)
        - [**Workloads API (apps/v1)**](#workloads-api-appsv1)
        - [**API Machinery**](#api-machinery-3)
          - [**Admission Control**](#admission-control)
          - [**API & API server**](#api-&-api-server)
          - [**Audit**](#audit)
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.14.md

    - client-go
      - The deprecated versionless API group accessors (like `clientset.Apps()`) have been removed. Use an explicit version instead (like `clientset.AppsV1()`) ([#74422](https://github.com/kubernetes/kubernetes/pull/74422), [@liggitt](https://github.com/liggitt))
      - The disk-cached discovery client is moved from k8s.io/client-go/discovery to k8s.io/client-go/discovery/cached/disk.
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Mon Jun 14 22:06:39 GMT 2021
    - 271.5K bytes
    - Viewed (0)
Back to top