Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,172 for attacher (0.35 sec)

  1. pkg/volume/csi/csi_block_test.go

    	pvName := pv.GetName()
    	nodeName := string(plug.host.GetNodeName())
    
    	csiMapper.csiClient = setupClient(t, true)
    
    	attachID := getAttachmentName(csiMapper.volumeID, string(csiMapper.driverName), string(nodeName))
    	attachment := makeTestAttachment(attachID, nodeName, pvName)
    	attachment.Status.Attached = true
    	_, err = csiMapper.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, metav1.CreateOptions{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/driver-call.go

    	Message string `json:"message,omitempty"`
    	// Path to the device attached. This field is valid only for attach calls.
    	// ie: /dev/sdx
    	DevicePath string `json:"device,omitempty"`
    	// Cluster wide unique name of the volume.
    	VolumeName string `json:"volumeName,omitempty"`
    	// Represents volume is attached on the node
    	Attached bool `json:"attached,omitempty"`
    	// Returns capabilities of the driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  3. docs/multi-user/admin/README.md

    ### 3. Configure `mc` and create another user user1 with attached policy user1policy
    
    ```
    mc alias set myminio-admin1 http://localhost:9000 admin1 admin123 --api s3v4
    
    mc admin user add myminio-admin1 user1 user123
    mc admin policy attach myminio-admin1 user1policy ~/user1policy.json
    mc admin policy attach myminio-admin1 user1policy --user=user1
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. pkg/volume/portworx/portworx.go

    		ReadOnly:       b.readOnly,
    		Managed:        !b.readOnly,
    		SELinuxRelabel: false,
    	}
    }
    
    // SetUp attaches the disk and bind mounts to the volume path.
    func (b *portworxVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return b.SetUpAt(b.GetPath(), mounterArgs)
    }
    
    // SetUpAt attaches the disk and bind mounts to the volume path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. helm/minio/templates/_helper_create_user.txt

      if [ ! -z $POLICY -a $POLICY != " " ] ; then
          echo "Adding policy '$POLICY' for '$USER'"
          set +e ; # policy already attach errors out, allow it.
          ${MC} admin policy attach myminio $POLICY --user=$USER
          set -e
      else
          echo "User '$USER' has no policy attached."
      fi
    }
    
    # Try connecting to MinIO instance
    {{- if .Values.tls.enabled }}
    scheme=https
    {{- else }}
    scheme=http
    {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 12 23:43:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.17.md

    - Azure: update disk lock logic per vm during attach/detach to allow concurrent updates for different nodes. ([#85115](https://github.com/kubernetes/kubernetes/pull/85115), [@aramase](https://github.com/aramase))
    - Fix vmss dirty cache issue in disk attach/detach on vmss node ([#85158](https://github.com/kubernetes/kubernetes/pull/85158), [@andyzhangx](https://github.com/andyzhangx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         */
        RootBuildState createRootBuild(BuildDefinition buildDefinition);
    
        /**
         * Attaches the root build.
         */
        void attachRootBuild(RootBuildState rootBuild);
    
        /**
         * Returns the root build of the build tree.
         *
         * @throws IllegalStateException When root build has not been attached.
         */
        RootBuildState getRootBuild() throws IllegalStateException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.13.md

      - The built-in `system:csi-external-provisioner` and `system:csi-external-attacher` cluster roles are deprecated and will not be auto-created in a future release. CSI deployments should provide their own RBAC role definitions with required permissions. ([#69868](https://github.com/kubernetes/kubernetes/pull/69868), [@pohly]( h...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            },
            "attached": {
              "description": "attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
              "type": "boolean"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. pkg/volume/flexvolume/flexvolume_test.go

      echo -n '{
        "status": "Success",
        "volume": "fakevolume"
      }'
      exit 0
    elif [ "$1" == "isattached" -a $# -eq 2 ]; then
      echo -n '{
        "status": "Success",
        "attached": true
      }'
      exit 0
    fi
    
    echo -n '{
      "status": "Not supported"
    }'
    exit 1
    
    # Direct the arguments to a file to be tested against later
    echo -n $@ &> {{.OutputFile}}
    `
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
Back to top