Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 162 for deploymentID (0.3 sec)

  1. tests/integration/security/file_mounted_certs/main_test.go

    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	inst         istio.Instance
    	apps         deployment.SingleNamespaceView
    	client       echo.Instances
    	server       echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pkg/apis/apps/v1/defaults_test.go

    			TerminationGracePeriodSeconds: &period,
    			SchedulerName:                 v1.DefaultSchedulerName,
    		},
    	}
    	tests := []struct {
    		original *appsv1.Deployment
    		expected *appsv1.Deployment
    	}{
    		{
    			original: &appsv1.Deployment{},
    			expected: &appsv1.Deployment{
    				Spec: appsv1.DeploymentSpec{
    					Replicas: ptr.To[int32](1),
    					Strategy: appsv1.DeploymentStrategy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/deployment-multi-service.yaml"},
    		analyzer:   &deployment.ServiceAssociationAnalyzer{},
    		expected: []message{
    			{msg.DeploymentAssociatedToMultipleServices, "Deployment bookinfo/multiple-svc-multiple-prot"},
    			{msg.DeploymentAssociatedToMultipleServices, "Deployment bookinfo/multiple-without-port"},
    			{msg.DeploymentConflictingPorts, "Deployment bookinfo/conflicting-ports"},
    		},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. cluster/gce/windows/smoke-test.sh

    function undeploy_linux_webserver_pod {
      ${kubectl} delete deployment $linux_webserver_deployment
    }
    
    linux_command_deployment=linux-ubuntu
    linux_command_pod_label=ubuntu
    linux_command_replicas=1
    
    function deploy_linux_command_pod {
      echo "Writing example deployment to $linux_command_deployment.yaml"
      cat <<EOF > $linux_command_deployment.yaml
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: $linux_command_deployment
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            {{- end }}
            - name: ISTIO_META_WORKLOAD_NAME
              value: {{.DeploymentName|quote}}
            - name: ISTIO_META_OWNER
              value: "kubernetes://apis/apps/v1/namespaces/{{.Namespace}}/deployments/{{.DeploymentName}}"
            {{- if .Values.global.meshID }}
            - name: ISTIO_META_MESH_ID
              value: "{{ .Values.global.meshID }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/deployment/builder.go

    	// are assigned and all Instances are ready to communicate with each other.
    	Build() (echo.Instances, error)
    	BuildOrFail(t test.Failer) echo.Instances
    }
    
    var _ Builder = &builder{}
    
    // New builder for echo deployments.
    func New(ctx resource.Context, clusters ...cluster.Cluster) Builder {
    	// use all workload clusters unless otherwise specified
    	if len(clusters) == 0 {
    		clusters = ctx.Clusters()
    	}
    	b := &builder{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.gen.go

    	// Description: The resulting pods of a service mesh deployment can't be associated with multiple services using the same port but different protocols.
    	DeploymentAssociatedToMultipleServices = diag.NewMessageType(diag.Warning, "IST0116", "This deployment %s is associated with multiple services using port %d but different protocols: %v")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.grafana.enabled", "the samples/addons/ deployments", false},
    		{"Values.tracing.enabled", "the samples/addons/ deployments", false},
    		{"Values.kiali.enabled", "the samples/addons/ deployments", false},
    		{"Values.prometheus.enabled", "the samples/addons/ deployments", false},
    		{"AddonComponents.grafana.Enabled", "the samples/addons/ deployments", false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. tests/integration/security/reachability_test.go

    			// if dual stack is enabled, a dual stack echo config should be added
    			if !t.Settings().EnableDualStack {
    				// Create a custom echo deployment in NS1 with subsets that allows us to test the
    				// migration of a workload to istio (from no sidecar to sidecar).
    				migrationApp = deployment.New(t).
    					WithClusters(t.Clusters()...).WithConfig(echo.Config{
    					Namespace:      echo1NS,
    					Service:        migrationServiceName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject_test.go

    	// Generate the patch.  At runtime, the webhook would actually generate the patch against the
    	// pod configuration. But since our input files are deployments, rather than actual pod instances,
    	// we have to apply the patch to the template portion of the deployment only.
    	templateJSON := convertToJSON(inputPod, t)
    	got := webhook.inject(&kube.AdmissionReview{
    		Request: &kube.AdmissionRequest{
    			Object: runtime.RawExtension{
    				Raw: templateJSON,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top