Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for virtualbox (0.3 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantMachine.java

            // We lock the provider to virtualbox because the Vagrantfile specifies lots of boxes that only work
            // properly in virtualbox. Virtualbox is vagrant's default but its possible to change that default and folks do.
            execute(spec -> {
                spec.setCommand("up");
                spec.setArgs("--provision", "--provider", "virtualbox");
            });
            isVMStarted = true;
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 7.5K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantBasePlugin.java

                        .filter(t -> t instanceof VagrantShellTask)
                        .filter(t -> t.getProject() == project)
                        .count()
                );
        }
    
        /**
         * Check vagrant and virtualbox versions, if any vagrant test tasks will be run.
         */
        static class VagrantSetupCheckerPlugin implements Plugin<Project> {
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.1K bytes
    - Click Count (0)
  3. TESTING.asciidoc

    VM running trusty by running
    `vagrant up ubuntu-1804 --provider virtualbox && vagrant ssh ubuntu-1804`.
    
    === Testing packaging on Windows
    
    The packaging tests also support Windows Server 2012R2 and Windows Server 2016.
    Unfortunately we're not able to provide boxes for them in open source use
    because of licensing issues. Any Virtualbox image that has WinRM and Powershell
    enabled for remote users should work.
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  4. Vagrantfile

    # in compliance with, at your election, the Elastic License 2.0 or the Server
    # Side Public License, v 1.
    
    define_opts = {
      autostart: false
    }.freeze
    
    Vagrant.configure(2) do |config|
    
      config.vm.provider 'virtualbox' do |vbox|
        # Give the box more memory and cpu because our tests are beasts!
        vbox.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
        vbox.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.9.md

    products. Specifically the Windows version of the kubelet.exe calls `GetPhysicallyInstalledSystemMemory` to get the physical memory installed on Windows machines and reports it as part of node metrics to heapster. This API call fails for VMware and VirtualBox virtualization environments. This issue is not present in bare metal Windows deployments, in Hyper-V, or on some of the popular public cloud providers.
    
    *   If you run `kubectl get po` while the API server in unreachable, a misleading...
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    There is also a new way to run bleeding edge Windows features from scratch by compiling the windows kubelet and kube-proxy, then using them along with daily builds of other Kubernetes components.
    
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Dec 13 12:43:45 GMT 2022
    - 454.1K bytes
    - Click Count (0)
Back to Top