Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 642 for configmaps (0.18 sec)

  1. tests/integration/security/util/cert/cert.go

    				return err
    			}
    		}
    
    		// If there is a configmap storing the CA cert from a previous
    		// integration test, remove it. Ideally, CI should delete all
    		// resources from a previous integration test, but sometimes
    		// the resources from a previous integration test are not deleted.
    		configMapName := "istio-ca-root-cert"
    		err = cluster.Kube().CoreV1().ConfigMaps(systemNs.Name()).Delete(context.TODO(), configMapName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    	rootCert, err := kubeClient.Kube().CoreV1().ConfigMaps(wg.Namespace).Get(context.Background(), controller.CACertNamespaceConfigMap, metav1.GetOptions{})
    	// errors if the requested configmap does not exist in the given namespace
    	if err != nil {
    		return fmt.Errorf("configmap %s was not found in namespace %s: %v", controller.CACertNamespaceConfigMap, wg.Namespace, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    	}
    
    	if printManifest {
    		return configMapBytes, nil
    	}
    
    	kubeproxyConfigMap := &v1.ConfigMap{}
    	if err := kuberuntime.DecodeInto(clientsetscheme.Codecs.UniversalDecoder(), configMapBytes, kubeproxyConfigMap); err != nil {
    		return []byte(""), errors.Wrap(err, "unable to decode kube-proxy configmap")
    	}
    
    	if !kubeProxyCfg.IsUserSupplied() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. samples/addons/kiali.yaml

        version: "v1.85.0"
        app.kubernetes.io/version: "v1.85.0"
        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: "kiali"
    ...
    ---
    # Source: kiali-server/templates/configmap.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: kiali
      namespace: istio-system
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
        app.kubernetes.io/instance: kiali
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. istioctl/pkg/precheck/precheck.go

    	}
    	for _, deployment := range deployments.Items {
    		scopingImpacted := false
    
    		// Obtain configmap to verify if affected features are used
    		configMapName := "istio"
    		if rev := deployment.Labels[label.IoIstioRev.Name]; rev != "default" {
    			configMapName += fmt.Sprintf("-%s", rev)
    		}
    		configMap, err := cli.Kube().CoreV1().ConfigMaps(namespace).Get(context.TODO(), configMapName, metav1.GetOptions{})
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/secure_naming_test.go

    }
    
    func checkCACert(t framework.TestContext, testNamespace namespace.Instance) error {
    	configMapName := "istio-ca-root-cert"
    	cm, err := t.Clusters().Default().Kube().CoreV1().ConfigMaps(testNamespace.Name()).Get(context.TODO(), configMapName,
    		metav1.GetOptions{})
    	if err != nil {
    		return err
    	}
    	var certData string
    	var pluginCert []byte
    	var ok bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/local/analyze_test.go

    		{
    			name: "istio cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "istio",
    				},
    			},
    			expect: true,
    		},
    		{
    			name: "sidecar cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "istio-sidecar-injector",
    				},
    			},
    			expect: true,
    		},
    		{
    			name: "not istio cm",
    			obj: &v1.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        name: system:controller:legacy-service-account-token-cleaner
      rules:
      - apiGroups:
        - ""
        resourceNames:
        - kube-apiserver-legacy-service-account-token-tracking
        resources:
        - configmaps
        verbs:
        - get
      - apiGroups:
        - ""
        resources:
        - secrets
        verbs:
        - delete
        - patch
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    }
    
    // loadCABundle determines the next set of content for the file.
    func (c *ConfigMapCAController) loadCABundle() error {
    	configMap, err := c.configmapLister.ConfigMaps(c.configmapNamespace).Get(c.configmapName)
    	if err != nil {
    		return err
    	}
    	caBundle := configMap.Data[c.configmapKey]
    	if len(caBundle) == 0 {
    		return fmt.Errorf("missing content for CA bundle %q", c.Name())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    	}
    
    	if configMap != "" {
    		if configMap == "" {
    			configMap = "Corefile"
    		}
    		_, err = client.CoreV1().ConfigMaps(metav1.NamespaceSystem).Create(context.TODO(), &v1.ConfigMap{
    			TypeMeta: metav1.TypeMeta{
    				Kind:       "ConfigMap",
    				APIVersion: "v1",
    			},
    			ObjectMeta: metav1.ObjectMeta{
    				Name: configMap,
    				Labels: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top