Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for secretNamespace (0.26 sec)

  1. pkg/kube/multicluster/secretcontroller_test.go

    	var (
    		secret0 = makeSecret(secretNamespace, "s0",
    			clusterCredential{"c0", []byte("kubeconfig0-0")})
    		secret0UpdateKubeconfigChanged = makeSecret(secretNamespace, "s0",
    			clusterCredential{"c0", []byte("kubeconfig0-1")})
    		secret0UpdateKubeconfigSame = makeSecret(secretNamespace, "s0",
    			clusterCredential{"c0", []byte("kubeconfig0-1")})
    		secret0AddCluster = makeSecret(secretNamespace, "s0",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. security/pkg/k8s/chiron/utils_test.go

    		secretName      string
    		secretNameSpace string
    		expectFail      bool
    	}{
    		"submitting a CSR without duplicate should succeed": {
    			gracePeriodRatio: 0.6,
    			k8sCaCertFile:    "./test-data/example-ca-cert.pem",
    			dnsNames:         []string{"foo"},
    			secretNames:      []string{"istio.webhook.foo"},
    			secretName:       "mock-secret",
    			secretNameSpace:  "mock-secret-namespace",
    			expectFail:       false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    	revision          string
    
    	// secretNamespace where we get cluster-access secrets
    	secretNamespace string
    	component       *multicluster.Component[*kubeController]
    }
    
    // NewMulticluster initializes data structure to store multicluster information
    func NewMulticluster(
    	serverID string,
    	kc kubernetes.Interface,
    	secretNamespace string,
    	opts Options,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/controller/bootstrap/bootstrapsigner.go

    // Signer is a controller that signs a ConfigMap with a set of tokens.
    type Signer struct {
    	client             clientset.Interface
    	configMapKey       string
    	configMapName      string
    	configMapNamespace string
    	secretNamespace    string
    
    	// syncQueue handles synchronizing updates to the ConfigMap.  We'll only ever
    	// have one item (Named <ConfigMapName>) in this queue. We are using it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.yaml

            diskURI: diskURIValue
            fsType: fsTypeValue
            kind: kindValue
            readOnly: true
          azureFile:
            readOnly: true
            secretName: secretNameValue
            secretNamespace: secretNamespaceValue
            shareName: shareNameValue
          capacity:
            capacityKey: "0"
          cephfs:
            monitors:
            - monitorsValue
            path: pathValue
            readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/iscsi.go

    	if err != nil {
    		return nil, err
    	}
    	if chapDiscover || chapSession {
    		secretName, secretNamespace, err := getISCSISecretNameAndNamespace(spec, namespace)
    		if err != nil {
    			return nil, err
    		}
    
    		if len(secretName) > 0 && len(secretNamespace) > 0 {
    			// if secret is provideded, retrieve it
    			kubeClient := plugin.host.GetKubeClient()
    			if kubeClient == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top