Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 194 for Headless (0.14 sec)

  1. pkg/test/framework/components/echo/deployment/flags.go

    var _ config.Value = &configs{}
    
    func (c *configs) String() string {
    	buf := &bytes.Buffer{}
    	for _, cc := range *c {
    		_, _ = fmt.Fprintf(buf, "FQDN:     %s\n", cc.ClusterLocalFQDN())
    		_, _ = fmt.Fprintf(buf, "Headless: %v\n", cc.Headless)
    		_, _ = fmt.Fprintf(buf, "VM:       %v\n", cc.DeployAsVM)
    		if cc.DeployAsVM {
    			_, _ = fmt.Fprintf(buf, "VMDistro: %s\n", cc.VMDistro)
    		}
    		if cc.Cluster.Name() != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. releasenotes/notes/27342.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 27342
    
    releaseNotes:
    - |
      **Improved** resolution of headless services via in-agent DNS to include endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 241 bytes
    - Viewed (0)
  3. releasenotes/notes/35883.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Enabled** discovering cross-cluster, same network, endpoints for headless services when `ISTIO_META_DNS_CAPTURE` and
      `ISTIO_META_DNS_AUTO_ALLOCATE` are enabled in `ProxyConfig.proxyMetadata`. This can be disabled by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 03 22:48:19 UTC 2021
    - 366 bytes
    - Viewed (0)
  4. releasenotes/notes/48207.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 48207
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 02:31:37 UTC 2023
    - 229 bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/config.go

    	Version string
    
    	// Locality (k8s only) indicates the locality of the deployed app.
    	Locality string
    
    	// Headless (k8s only) indicates that no ClusterIP should be specified.
    	Headless bool
    
    	// StatefulSet indicates that the pod should be backed by a StatefulSet. This implies Headless=true
    	// as well.
    	StatefulSet bool
    
    	// StaticAddress for some echo implementations is an address locally reachable within
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

                  type:
                    description: type defines the type of this service. Must be ClusterSetIP
                      or Headless.
                    type: string
                    enum:
                    - ClusterSetIP
                    - Headless
              status:
                description: status contains information about the exported services that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/templates/service.yaml

    {{- end }}
    {{- end }}
    spec:
    {{- if .IPFamilies }}
      ipFamilies: [ {{ .IPFamilies }} ]
    {{- end }}
    {{- if .IPFamilyPolicy }}
      ipFamilyPolicy: {{ .IPFamilyPolicy }}
    {{- end }}
    {{- if .Headless }}
      clusterIP: None
    {{- end }}
      ports:
    {{- range $i, $p := .ServicePorts }}
      - name: {{ $p.Name }}
        port: {{ $p.ServicePort }}
        targetPort: {{ $p.WorkloadPort }}
    {{- end }}
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 917 bytes
    - Viewed (0)
  8. scripts/playwright/separate_openapi_schemas/image01.py

    import subprocess
    
    from playwright.sync_api import Playwright, sync_playwright
    
    
    def run(playwright: Playwright) -> None:
        browser = playwright.chromium.launch(headless=False)
        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_text("POST/items/Create Item").click()
        page.get_by_role("tab", name="Schema").first.click()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 819 bytes
    - Viewed (0)
  9. scripts/playwright/separate_openapi_schemas/image03.py

    import subprocess
    
    from playwright.sync_api import Playwright, sync_playwright
    
    
    def run(playwright: Playwright) -> None:
        browser = playwright.chromium.launch(headless=False)
        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_text("GET/items/Read Items").click()
        page.get_by_role("tab", name="Schema").click()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 892 bytes
    - Viewed (0)
  10. scripts/playwright/separate_openapi_schemas/image04.py

    import subprocess
    
    from playwright.sync_api import Playwright, sync_playwright
    
    
    def run(playwright: Playwright) -> None:
        browser = playwright.chromium.launch(headless=False)
        context = browser.new_context(viewport={"width": 960, "height": 1080})
        page = context.new_page()
        page.goto("http://localhost:8000/docs")
        page.get_by_role("button", name="Item-Input").click()
        page.get_by_role("button", name="Item-Output").click()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 881 bytes
    - Viewed (0)
Back to top