Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 136 for gce (0.06 sec)

  1. cluster/gce/gci/health-monitor.sh

    # limitations under the License.
    
    # This script is for master and node instance health monitoring, which is
    # packed in kube-manifest tarball. It is executed through a systemd service
    # in cluster/gce/gci/<master/node>.yaml. The env variables come from an env
    # file provided by the systemd service.
    
    set -o nounset
    set -o pipefail
    
    # We simply kill the process when there is a failure. Another systemd service will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 09:19:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.15.md

    - Windows nodes on GCE now have the Windows firewall enabled by default. ([#78507](https://github.com/kubernetes/kubernetes/pull/78507), [@pjh](https://github.com/pjh))
    - Added `CNI_VERSION` and `CNI_SHA1` environment variables in `kube-up.sh` to configure CNI versions on GCE. ([#76353](https://github.com/kubernetes/kubernetes/pull/76353), [@Random-Liu](https://github.com/Random-Liu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/metrics/metrics_test.go

    		},
    		Spec: v1.PersistentVolumeSpec{
    			Capacity: v1.ResourceList{
    				v1.ResourceName(v1.ResourceStorage): resource.MustParse("5G"),
    			},
    			PersistentVolumeSource: v1.PersistentVolumeSource{
    				// Note that as GCE CSI Migration is completed, this is handled by the PD CSI plugin.
    				GCEPersistentDisk: &v1.GCEPersistentDiskVolumeSource{},
    			},
    			AccessModes: []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce, v1.ReadOnlyMany},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/delete_test.go

    			expectedVolumes: []*v1.PersistentVolume{volumeWithAnnotation(volume.AnnMigratedTo, "pd.csi.storage.gke.io", volumeWithAnnotation(volume.AnnDynamicallyProvisioned, "kubernetes.io/gce-pd", newVolume("volume8-10-3", "1Gi", "uid10-1-3", "claim10-1-3", v1.VolumeReleased,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tests/integration/GKE.md

    ```bash
    which gcloud
    ```
    
    ### Create a project
    
    If you haven't already, [create a Google Cloud Project](https://cloud.google.com/resource-manager/docs/creating-managing-projects).
    
    ### Configure GCE/GKE Service Account
    
    You must grant your default compute service account the correct permissions before creating the deployment.
    Otherwise, the installation will fail.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	// test cases are moot and they can be removed (keeping only the test cases
    	// with gce-pd).
    	const testPlugin = "non-migrated-plugin"
    	const migratedPlugin = "kubernetes.io/gce-pd"
    	const migratedDriver = "pd.csi.storage.gke.io"
    	const nonmigratedPlugin = "kubernetes.io/rbd"
    	const nonmigratedDriver = "rbd.csi.ceph.com"
    	tests := []struct {
    		name                 string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.11.md

    * GCE: Update cloud provider to use TPU v1 API ([#64727](https://github.com/kubernetes/kubernetes/pull/64727), [@yguo0905](https://github.com/yguo0905))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  8. cluster/gce/config-common.sh

    # NOTE: Avoid giving nodes empty scopes, because kubelet needs a service account
    # in order to initialize properly.
    NODE_SCOPES="${NODE_SCOPES:-monitoring,logging-write,storage-ro}"
    
    # Below exported vars are used in cluster/gce/util.sh (or maybe somewhere else),
    # please remove those vars when not needed any more.
    
    # Root directory for Kubernetes files on Windows nodes.
    WINDOWS_K8S_DIR="C:\etc\kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. cluster/gce/gci/flexvolume_node_setup.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Sets up FlexVolume drivers on GCE COS instances using mounting utilities packaged in a Google
    # Container Registry image.
    # The user-provided FlexVolume driver(s) must be under /flexvolume of the image filesystem.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  10. cluster/gce/windows/configure.ps1

    # increase download speed.
    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
    $ProgressPreference = 'SilentlyContinue'
    
    # Returns the GCE instance metadata value for $Key where key is an "attribute"
    # of the instance. If the key is not present in the instance metadata returns
    # $Default if set, otherwise returns $null.
    function Get-InstanceMetadataAttribute {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 28 21:28:26 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top