Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 117 for serviceOf (0.14 sec)

  1. manifests/charts/gateways/istio-egress/templates/service.yaml

    {{ $gateway := index .Values "gateways" "istio-egressgateway" }}
    {{- if not $gateway.customService }}
    apiVersion: v1
    kind: Service
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      annotations:
        {{- range $key, $val := $gateway.serviceAnnotations }}
        {{ $key }}: {{ $val | quote }}
        {{- end }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      {{- if .Values.pilot.serviceAnnotations }}
      annotations:
    {{ toYaml .Values.pilot.serviceAnnotations | indent 4 }}
      {{- end }}
      labels:
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/templates/service.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: {{ .Service }}
    ---
    {{- end }}
    apiVersion: v1
    kind: Service
    metadata:
      name: {{ .Service }}
    {{- if .ServiceLabels }}
      labels:
        app: {{ .Service }}
    {{- range $name, $value := .ServiceLabels }}
        {{$name}}: "{{$value}}"
    {{- end }}
    {{- else}}
      labels:
        app: {{ .Service }}
    {{- end }}
    {{- if .ServiceAnnotations }}
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 917 bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context_test.go

    // localServiceDiscovery is an in-memory ServiceDiscovery with mock services
    type localServiceDiscovery struct {
    	services         []*Service
    	serviceInstances []*ServiceInstance
    
    	NoopAmbientIndexes
    	NetworkGatewaysHandler
    }
    
    var _ ServiceDiscovery = &localServiceDiscovery{}
    
    func (l *localServiceDiscovery) Services() []*Service {
    	return l.services
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  5. cmd/auth-handler.go

    		// Get credential information from the request.
    		cred, owner, s3Err = getReqAccessKeyV4(r, region, serviceS3)
    		if s3Err != ErrNone {
    			return cred, owner, s3Err
    		}
    
    		// we only support V4 (no presign) with auth body
    		s3Err = isReqAuthenticated(ctx, r, region, serviceS3)
    	}
    	if s3Err != ErrNone {
    		return cred, owner, s3Err
    	}
    
    	logger.GetReqInfo(ctx).Cred = cred
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/providers/services/tests/services.sample.conf

    # tag::cli[]
    # gradle build
    # end::cli[]
    executable: gradle
    args: build -q
    expected-output-file: services.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 170 bytes
    - Viewed (0)
  7. 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)
  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. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            then:
            output.count("service:") == 6
            outputContains("service: created with value = 5")
            outputContains("service: created with value = 15")
            outputContains("service: value is 6")
            outputContains("service: value is 16")
            outputContains("service: closed with value 6")
            outputContains("service: closed with value 16")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    func TestEgressGatewayTls(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			// Apply Egress Gateway for service namespace to originate external traffic
    
    			createGateway(t, t, appNS, serviceNS, inst.Settings().EgressGatewayServiceNamespace,
    				inst.Settings().EgressGatewayServiceName, inst.Settings().EgressGatewayIstioLabel)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top