Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 287 for serviceOf (0.24 sec)

  1. pkg/kube/inject/testdata/inject/hello-service.yaml

    kind: Service
    apiVersion: v1
    metadata:
      name: hello
    spec:
      selector:
        app: hello
        tier: backend
      ports:
        - protocol: TCP
          port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 171 bytes
    - Viewed (0)
  2. hack/testdata/kubernetes-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: kubernetes
      namespace: default
    spec:
      clusterIP: 10.0.0.1
      ports:
      - name: https
        port: 443
        protocol: TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 19:17:05 UTC 2017
    - 184 bytes
    - Viewed (0)
  3. cmd/signature-v4.go

    		payload,
    	}, "\n")
    	return canonicalRequest
    }
    
    // getScope generate a string of a specific date, an AWS region, and a service.
    func getScope(t time.Time, region string) string {
    	scope := strings.Join([]string{
    		t.Format(yyyymmdd),
    		region,
    		string(serviceS3),
    		"aws4_request",
    	}, SlashSeparator)
    	return scope
    }
    
    // getStringToSign a string based on selected query values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. releasenotes/notes/mcs-host.yaml

      - 33949
    releaseNotes:
      - |
        **Added** experimental support for the Kubernetes Multi-Cluster Services (MCS) host (`clusterset.local`).
        This feature is off by default, but can be enabled by setting the following flags in Istio:
        `ENABLE_MCS_HOST` and `ENABLE_MCS_SERVICE_DISCOVERY`. When enabled Istio will include the MCS host as a
        domain in the service's HTTP route. Additionally, Istio will support the MCS host during a DNS lookup.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 19:27:15 UTC 2021
    - 709 bytes
    - Viewed (0)
  5. samples/bookinfo/src/build-services.sh

    John Howard <******@****.***> 1708732597 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/typha-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: calico-typha
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
        k8s-app: calico-typha
    spec:
      ports:
        - port: 5473
          protocol: TCP
          targetPort: calico-typha
          name: calico-typha
      selector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 11 23:11:57 UTC 2017
    - 356 bytes
    - Viewed (0)
  7. hack/testdata/service-revision1.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: a
    spec:
      selector:
        app: test
      clusterIP: None
      ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 09 14:59:02 UTC 2018
    - 123 bytes
    - Viewed (0)
  8. helm/minio/templates/console-service.yaml

    {{ $scheme := .Values.tls.enabled | ternary "https" "http" }}
    apiVersion: v1
    kind: Service
    metadata:
      name: {{ template "minio.fullname" . }}-console
      labels:
        app: {{ template "minio.name" . }}
        chart: {{ template "minio.chart" . }}
        release: {{ .Release.Name }}
        heritage: {{ .Release.Service }}
      {{- if .Values.consoleService.annotations }}
      annotations: {{- toYaml .Values.consoleService.annotations | nindent 4 }}
      {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:05:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/basic-http.yaml

        backendRefs:
        - name: my-service1
          port: 8080
      - matches:
        - headers:
          - type: Exact
            name: magic
            value: foo
          queryParams:
          - type: Exact
            name: great
            value: example
          path:
            type: PathPrefix
            value: /some/thing
          method: GET
        backendRefs:
        - name: my-service2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/forward-proxy/service.tmpl.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: external-forward-proxy
    spec:
      selector:
        app: external-forward-proxy
      ports:
    {{- range $idx, $port := .ports }}
      - name: {{$port.Name}}
        port: {{$port.Port}}
        targetPort: {{$port.TargetPort}}
        protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 13:42:37 UTC 2022
    - 280 bytes
    - Viewed (0)
Back to top