Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for galley_ (0.29 sec)

  1. tests/integration/telemetry/api/dashboard_test.go

    		},
    		// Pilot is installed only on Primary cluster, hence validate for primary clusters only.
    		true,
    	},
    	{
    		"istio-services-grafana-dashboards",
    		"istio-mesh-dashboard.json",
    		[]string{
    			"galley_",
    			"istio_tcp_",
    			"max(pilot_k8s_cfg_events{",
    		},
    		false,
    	},
    	{
    		"istio-services-grafana-dashboards",
    		"istio-service-dashboard.json",
    		[]string{
    			"istio_tcp_",
    		},
    		false,
    	},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. operator/pkg/patch/patch_test.go

    spec:
      template:
        spec:
          containers:
          - name: deleteThis
            foo: bar
          - name: galley
            ports:
            - containerPort: 443
            - containerPort: 15014
            - containerPort: 9901
            command:
            - /usr/local/bin/galley
            - server
            - --meshConfigFile=/etc/mesh-config/mesh
            - --livenessProbeInterval=1s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  3. pkg/test/datasets/Readme.md

    # How To Use Galley Test Data Set
    
    ## Some of this information is out-of-date.  It is preserved for reference, though the datasets may still be used
    
    The Galley Test Data is designed to tests Galley from an inputs/outputs
    perspective. It uses an embedded set of input and golden files from which
    tests are calculated and executed.
    
    The general directory/file structure is as follows:
    
    ```plain
    # Area specific test data set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. tests/integration/README.md

    For example, the following code creates and then interacts with a Galley and Pilot component:
    
    ```go
    func TestMyLogic(t *testing.T) {
        framework.
            NewTest(t).
            Run(func(ctx framework.TestContext) {
                // Create the components.
                g := galley.NewOrFail(ctx, ctx, galley.Config{})
                p := pilot.NewOrFail(ctx, ctx, pilot.Config {})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. operator/pkg/object/objects_test.go

    	"apiVersion": "v1",
    	"kind": "Pod",
    	"metadata": {
    		"name": "istio-galley-75bcd59768-hpt5t",
    		"namespace": "istio-system",
    		"labels": {
    			"istio": "galley"
    		}
    	},
    	"spec": {
    		"containers": [
    			{
    				"name": "galley",
    				"image": "docker.io/istio/galley:1.1.8",
    				"command": [
    					"/usr/local/bin/galley",
    					"server",
    					"--meshConfigFile=/etc/mesh-config/mesh",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. operator/pkg/compare/compare_test.go

            image: docker.io/istio/citadel:1.2.2
    `
    
    	testPodYaml1 := `apiVersion: v1
    kind: Pod
    metadata:
      name: istio-galley-75bcd59768-hpt5t
      namespace: istio-system
      labels:
        istio: galley
    spec:
      containers:
      - name: galley
        image: docker.io/istio/galley:1.1.8
        ports:
        - containerPort: 443
          protocol: TCP
        - containerPort: 15014
          protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedContainersDslTest.kt

                    extendsFrom(cabin.get())
                }
    
                val valley: NamedDomainObjectProvider<Configuration> = configurations.register("valley")
                val hill: NamedDomainObjectProvider<Configuration> = configurations.register("hill") {
                    extendsFrom(valley.get())
                }
                """
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/README.md

    ## Writing Analyzers
    
    ### 1. Create the code
    
    Analyzers need to implement the Analyzer interface ( in the `galley/pkg/config/analysis` package). They should be created under the analyzers subdirectory, and given their own appropriate subpackage.
    
    An annotated example:
    
    ```go
    package virtualservice
    
    // <imports here>
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/legacy/util/kuberesource/resources.go

    	_ = resultBuilder.Add(collections.ValidatingWebhookConfiguration)
    	_ = resultBuilder.Add(collections.MutatingWebhookConfiguration)
    	return resultBuilder.Build()
    }
    
    // the following code minimally duplicates logic from galley/pkg/config/source/kube/rt/known.go
    // without propagating the many dependencies it comes with.
    
    var knownTypes = map[string]struct{}{
    	asTypesKey("", "Service"):   {},
    	asTypesKey("", "Namespace"): {},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. CODEOWNERS

    /tests/integration/conformance/                                  @istio/wg-test-and-release-maintainers
    /tests/integration/framework/                                    @istio/wg-test-and-release-maintainers
    /tests/integration/galley/                                       @istio/wg-networking-maintainers
    /tests/integration/telemetry/                                    @istio/wg-policies-and-telemetry-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top