Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for _rds (0.03 sec)

  1. manifests/addons/gen.sh

    GRAFANA_VERSION=${GRAFANA_VERSION:-"8.0.1"}
    
    # Set up kiali
    {
    helm3 template kiali-server \
      --namespace istio-system \
      --version 1.85.0 \
      --set deployment.image_version=v1.85 \
      --include-crds \
      --set nameOverride=kiali \
      --set fullnameOverride=kiali \
      kiali-server \
      --repo https://kiali.org/helm-charts \
      -f "${WD}/values-kiali.yaml"
    } > "${ADDONS}/kiali.yaml"
    
    # Set up prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/net/dnsconfig_unix.go

    				case s == "use-vc" || s == "usevc" || s == "tcp":
    					// Linux (use-vc), FreeBSD (usevc) and OpenBSD (tcp) option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "Sets RES_USEVC in _res.options.
    					//  This option forces the use of TCP for DNS resolutions."
    					// https://www.freebsd.org/cgi/man.cgi?query=resolv.conf&sektion=5&manpath=freebsd-release-ports
    					// https://man.openbsd.org/resolv.conf.5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/mutatingwebhook.yaml

      failurePolicy: Fail
      reinvocationPolicy: "{{ .reinvocationPolicy }}"
      admissionReviewVersions: ["v1beta1", "v1"]
    {{- end }}
    {{- /* Installed for each revision - not installed for cluster resources ( cluster roles, bindings, crds) */}}
    {{- if not .Values.global.operatorManageWebhooks }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq .Release.Namespace "istio-system"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/mutatingwebhook.yaml

      failurePolicy: Fail
      reinvocationPolicy: "{{ .reinvocationPolicy }}"
      admissionReviewVersions: ["v1beta1", "v1"]
    {{- end }}
    {{- /* Installed for each revision - not installed for cluster resources ( cluster roles, bindings, crds) */}}
    {{- if not .Values.global.operatorManageWebhooks }}
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    metadata:
    {{- if eq .Release.Namespace "istio-system"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    		}
    
    		f := l.FilterChains[0].Filters[0]
    		cfg, _ := conversion.MessageToStruct(f.GetTypedConfig())
    		rds := cfg.Fields["rds"].GetStructValue().Fields["route_config_name"].GetStringValue()
    		if rds != "8080" {
    			t.Fatalf("expect routes %s, found %s", "8080", rds)
    		}
    
    		l = findListenerByAddress(listeners, "1.2.3.4")
    		if l == nil {
    			t.Fatalf("expect listener %s", "1.2.3.4_8080")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. pkg/kube/kclient/client_test.go

    		}, 1)
    		tracker.WaitOrdered("add/name")
    	})
    	t.Run("CRD not ready", func(t *testing.T) {
    		stop := test.NewStop(t)
    		c := kube.NewFakeClient()
    
    		// Client created before CRDs are ready
    		wasm := kclient.NewDelayedInformer[controllers.Object](c, gvr.WasmPlugin, kubetypes.StandardInformer, kubetypes.Filter{})
    		tracker := assert.NewTracker[string](t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. manifests/addons/dashboards/lib/panels.libsonnet

          + timeSeries.standardOptions.withOverrides([
            overrideSeries('cds', 'Clusters'),
            overrideSeries('eds', 'Endpoints'),
            overrideSeries('lds', 'Listeners'),
            overrideSeries('rds', 'Routes'),
            overrideSeries('istio.io/debug', 'Debug'),
            overrideSeries('wads', 'Authorization'),
            overrideSeries('wds', 'Workloads'),
          ]),
      },
    
      heatmap: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/grpcgen/lds.go

    							HttpFilters: filters,
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								// TODO: for TCP listeners don't generate RDS, but some indication of cluster name.
    								Rds: &hcm.Rds{
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/crdclient/client_test.go

    	}
    
    	if _, err := store.Create(config.Config{
    		Meta: configMeta,
    		Spec: pb,
    	}); err != nil {
    		t.Fatalf("Create => got %v", err)
    	}
    
    	return pb
    }
    
    // Ensure that the client can run without CRDs present
    func TestClientNoCRDs(t *testing.T) {
    	schema := collection.NewSchemasBuilder().MustAdd(collections.Sidecar).Build()
    	store, _ := makeClient(t, schema, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tests/integration/helm/upgrade/util.go

    	_, err := shell.Execute(false, execCmd)
    	if err != nil {
    		ctx.Fatalf("couldn't run kubectl apply on crds folder: %v", err)
    	}
    
    	// Upgrade base chart
    	err = h.UpgradeChart(helmtest.BaseReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.BaseChart),
    		nsConfig.Get(helmtest.BaseReleaseName), overrideValuesFile, helmtest.Timeout, "--skip-crds")
    	if err != nil {
    		ctx.Fatalf("failed to upgrade istio %s chart", helmtest.BaseReleaseName)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top