Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 159 for istiooperators (0.17 sec)

  1. tests/integration/iop-remote-integration-test-gateways.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: default-gateways
    spec:
      profile: empty
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            k8s:
              resources:
                requests:
                  cpu: 10m
                  memory: 40Mi
              service:
                ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 15 18:17:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/apply_test.go

    		},
    		{
    			name:         "updates if present",
    			currentState: "testdata/configmap.yaml",
    			input:        "testdata/configmap-changed.yaml",
    			want:         "testdata/configmap-changed.yaml",
    		},
    		// Test IstioOperator field removals
    		{
    			name:  "creates if not present",
    			input: "testdata/iop-test-gw-1.yaml",
    			want:  "testdata/iop-test-gw-1.yaml",
    		},
    		{
    			name:         "updates if present",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. tests/integration/iop-ambient-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            label:
              aaa: aaa-val
              bbb: bbb-val
              version: "21"
            k8s:
              resources:
                requests:
                  cpu: 111m
                  memory: 111Mi
          - name: user-ingressgateway
            enabled: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. tests/integration/iop-integration-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            k8s:
              service:
                ports:
                  ## Default ports
                  - port: 15021
                    targetPort: 15021
                    name: status-port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. operator/pkg/util/k8s.go

    func GKString(gvk schema.GroupKind) string {
    	return fmt.Sprintf("%s/%s", gvk.Group, gvk.Kind)
    }
    
    // ValidateIOPCAConfig validates if the IstioOperator CA configs are applicable to the K8s cluster
    func ValidateIOPCAConfig(client kube.Client, iop *iopv1alpha1.IstioOperator) error {
    	globalI := iop.Spec.Values.AsMap()["global"]
    	global, ok := globalI.(map[string]any)
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. samples/security/spire/istio-spire-config.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
    spec:
      profile: default
      meshConfig:
        trustDomain: example.org
      values:
        global:
        # This is used to customize the sidecar template
        sidecarInjectorWebhook:
          templates:
            spire: |
              spec:
                containers:
                - name: istio-proxy
                  volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. operator/pkg/util/testdata/overlay-iop.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      meshConfig:
        accessLogFile: /dev/stdout
        extensionProviders:
        - name: otel
          envoyOtelAls:
            service: otel-collector.istio-system.svc.cluster.local
            port: 4317
        - name: prometheus
          prometheus:
        - name: stackdriver
          stackdriver:
        - name: envoy
          envoyFileAccessLog:
            path: /dev/stdout
        - name: envoyExtAuthzHttp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  9. operator/cmd/mesh/uninstall.go

    	purge bool
    	// revision is the Istio control plane revision the command targets.
    	revision string
    	// filename is the path of input IstioOperator CR.
    	filename string
    	// set is a string with element format "path=value" where path is an IstioOperator path and the value is a
    	// value to set the node at that path to.
    	set []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. operator/pkg/metrics/utils.go

    		errorReason = "unknown"
    	}
    	GetCRErrorTotal.
    		With(CRFetchErrorReasonLabel.Value(errorReason)).
    		Increment()
    }
    
    // CountManifestRender increments the count of rendered
    // manifest from IstioOperator CR by component name.
    func CountManifestRender(name name.ComponentName) {
    	RenderManifestTotal.
    		With(ComponentNameLabel.Value(string(name))).
    		Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 20 18:48:20 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top