Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for vagrant (0.1 sec)

  1. .gitignore

    # git history files
    .history_rewritten_*
    # Eclipse artifacts
    .project
    .pydevproject
    #Vagrant
    tools/vagrant/.vagrant/
    # Intellij
    *.iml
    .idea/
    .run/
    # Visual Studio Code
    .vscode/
    # Bazel
    /bazel-*
    # vi swap files
    .*.swp
    # vi backups
    *.bak
    # common backups
    *~
    # python artifacts
    *.pyc
    # pilot
    pilot/pkg/kube/config
    pilot/pkg/proxy/envoy/envoy
    # lint
    lintconfig.gen.json
    .istiorc
    .istiorc.mk
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/_helpers.tpl

    {{- define "name" -}}
        istio-cni
    {{- end }}
    
    
    {{- define "istio-tag" -}}
        {{ .Values.cni.tag | default .Values.global.tag }}{{with (.Values.cni.variant | default .Values.global.variant)}}-{{.}}{{end}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 218 bytes
    - Viewed (0)
  3. tests/integration/tests.mk

    endif
    
    ifneq ($(HUB),)
        _INTEGRATION_TEST_FLAGS += --istio.test.hub=$(HUB)
    endif
    
    ifneq ($(TAG),)
        _INTEGRATION_TEST_FLAGS += --istio.test.tag=$(TAG)
    endif
    
    ifneq ($(VARIANT),)
        _INTEGRATION_TEST_FLAGS += --istio.test.variant=$(VARIANT)
    endif
    
    _INTEGRATION_TEST_SELECT_FLAGS ?= --istio.test.select=$(TEST_SELECT)
    ifneq ($(JOB_TYPE),postsubmit)
    	_INTEGRATION_TEST_SELECT_FLAGS:="$(_INTEGRATION_TEST_SELECT_FLAGS),-postsubmit"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. architecture/networking/controllers.md

    `kube.Client` just bundles these all in one place, so we have a single object to pass around anywhere we need Kubernetes access.
    Additionally, it has a fake client variant, that does the same thing but with fake clients for use in unit tests.
    
    Aside from this, there are a few conveniences and workarounds built-in to the client to make things simpler.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 17:41:25 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/README.md

    So basically selecting the right binary for one of the above cases is a heuristic with 2 inputs:
    
    1. Does the particular binary variant (legacy, nft, ip6tables) even exist in $PATH?
    1. In the current netns context, are there already rules defined in one of (legacy, nft) tables? If so, prefer that one.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top