Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 237 for configMaps (0.36 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    		// Needed for imagepullsecrets, rbd/ceph and secret volumes, and secrets in envs
    		// Needed for configmap volume and envs
    		// Use the Node authorization mode to limit a node to get secrets/configmaps referenced by pods bound to itself.
    		rbacv1helpers.NewRule("get", "list", "watch").Groups(legacyGroup).Resources("secrets", "configmaps").RuleOrDie(),
    		// Needed for persistent volumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. api/discovery/api__v1.json

          ],
          "singularName": "componentstatus",
          "verbs": [
            "get",
            "list"
          ]
        },
        {
          "kind": "ConfigMap",
          "name": "configmaps",
          "namespaced": true,
          "shortNames": [
            "cm"
          ],
          "singularName": "configmap",
          "storageVersionHash": "qFsyl6wFWjQ=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. tests/integration/operator/switch_cr_test.go

    	}
    	var err error
    	// clean up dynamically created secret and configmaps
    	if e := cs.Kube().CoreV1().Secrets(IstioNamespace).DeleteCollection(
    		context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    		err = multierror.Append(err, e)
    	}
    	if e := cs.Kube().CoreV1().ConfigMaps(IstioNamespace).DeleteCollection(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. pkg/config/schema/kubeclient/resources.gen.go

    		}
    	case gvr.ConfigMap:
    		l = func(options metav1.ListOptions) (runtime.Object, error) {
    			return c.Kube().CoreV1().ConfigMaps(opts.Namespace).List(context.Background(), options)
    		}
    		w = func(options metav1.ListOptions) (watch.Interface, error) {
    			return c.Kube().CoreV1().ConfigMaps(opts.Namespace).Watch(context.Background(), options)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi_test.go

    		VolumeSource: v1.VolumeSource{
    			ConfigMap: &v1.ConfigMapVolumeSource{},
    		},
    	}).Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			Secret: &v1.SecretVolumeSource{},
    		},
    	}).Obj()
    	pvcPodWithConfigmapAndSecret = st.MakePod().PVC("pvcWithDeletedPV").Volume(v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			ConfigMap: &v1.ConfigMapVolumeSource{},
    		},
    	}).Volume(v1.Volume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/addons/dns/dns.go

    	if err != nil {
    		return errors.Wrap(err, "unable to migrate CoreDNS ConfigMap")
    	}
    
    	// Take a copy of the existing Corefile data as `Corefile-backup` and update the ConfigMap
    	if _, err := client.CoreV1().ConfigMaps(cm.ObjectMeta.Namespace).Update(context.TODO(), &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      kubeadmconstants.CoreDNSConfigMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top