Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for envoy_bootstrap (0.17 sec)

  1. tools/packaging/common/envoy_bootstrap.json

    lei-tang <******@****.***> 1715879128 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. tools/docker.yaml

      dockerfile: pilot/docker/Dockerfile.proxyv2
      files:
      - tools/packaging/common/envoy_bootstrap.json
      - tools/packaging/common/gcp_envoy_bootstrap.json
      - ${TARGET_OUT_LINUX}/${RELEASE_MODE}/${SIDECAR}
      targets:
      - ${TARGET_OUT_LINUX}/pilot-agent
    - name: pilot
      dockerfile: pilot/docker/Dockerfile.pilot
      files:
      - tools/packaging/common/envoy_bootstrap.json
      - tools/packaging/common/gcp_envoy_bootstrap.json
      targets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    		return "TLS"
    	}
    	return "noTLS"
    }
    
    func GenerateForwardProxyBootstrapConfig(listeners []ListenerSettings) (string, error) {
    	bootstrap := &envoy_bootstrap.Bootstrap{
    		Admin: &envoy_bootstrap.Admin{
    			Address: createSocketAddress("127.0.0.1", 9902),
    		},
    		StaticResources: &envoy_bootstrap.Bootstrap_StaticResources{
    			Listeners: []*envoy_listener.Listener{},
    			Clusters: []*envoy_cluster.Cluster{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. pilot/docker/Dockerfile.pilot

    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/pilot-discovery /usr/local/bin/pilot-discovery
    
    # Copy templates for bootstrap generation.
    COPY envoy_bootstrap.json /var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    COPY gcp_envoy_bootstrap.json /var/lib/istio/envoy/gcp_envoy_bootstrap_tmpl.json
    
    USER 1337:1337
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 1K bytes
    - Viewed (0)
  5. pilot/docker/Dockerfile.proxyv2

    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    WORKDIR /
    
    ARG proxy_version
    ARG SIDECAR=envoy
    
    # Copy Envoy bootstrap templates used by pilot-agent
    COPY envoy_bootstrap.json /var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    COPY gcp_envoy_bootstrap.json /var/lib/istio/envoy/gcp_envoy_bootstrap_tmpl.json
    
    # Install Envoy.
    ARG TARGETARCH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. samples/custom-bootstrap/README.md

    For reference, [the default bootstrap configuration](../../tools/packaging/common/envoy_bootstrap.json) and Envoy's [configuration reference](https://www.envoyproxy.io/docs/envoy/latest/configuration/configuration#config) may be useful
    
    ## Outside of Kubernetes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pkg/bootstrap/instance_test.go

    			replacement: []byte("$1/test-path/$2"),
    		},
    		{
    			// Example: "customConfigFile":"../../tools/packaging/common/envoy_bootstrap.json"
    			// The path may change in CI/other machines
    			pattern:     regexp.MustCompile(`("customConfigFile":").*(envoy_bootstrap.json")`),
    			replacement: []byte(`"customConfigFile":"envoy_bootstrap.json"`),
    		},
    		{
    			pattern:     regexp.MustCompile(tmpDir),
    			replacement: []byte(`/tmp`),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. CODEOWNERS

    /tools/                                                          @istio/wg-test-and-release-maintainers
    /tools/packaging/common/envoy_bootstrap.json                     @istio/wg-networking-maintainers
    /tools/istio-iptables/                                           @istio/wg-networking-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. tools/packaging/packaging.mk

            $(eval SIDECAR_FILES+=${REPO_ROOT}/tools/packaging/common/$(notdir $(DEST))=$(DEST)))
    
    SIDECAR_FILES+=${REPO_ROOT}/tools/packaging/common/envoy_bootstrap.json=/var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    
    # original name used in 0.2 - will be updated to 'istio.deb' since it now includes all istio binaries.
    SIDECAR_PACKAGE_NAME ?= istio-sidecar
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. pkg/bootstrap/testdata/tracing_none_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top