Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 412 for deploymentID (0.56 sec)

  1. cluster/addons/metrics-server/metrics-server-deployment.yaml

        addonmanager.kubernetes.io/mode: EnsureExists
    data:
      NannyConfiguration: |-
        apiVersion: nannyconfig/v1alpha1
        kind: NannyConfiguration
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: metrics-server-v0.7.1
      namespace: kube-system
      labels:
        k8s-app: metrics-server
        addonmanager.kubernetes.io/mode: Reconcile
        version: v0.7.1
    spec:
      selector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/deployment/internal/DefaultDeploymentRegistry.java

                } else {
                    return null;
                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public Collection<Deployment> getRunningDeployments() {
            lock.lock();
            try {
                List<Deployment> runningDeployments = new ArrayList<>();
                for (RegisteredDeployment deployment : deployments.values()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/external-forward-proxy-deployment.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: external-forward-proxy
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: external-forward-proxy
      template:
        metadata:
          labels:
            app: external-forward-proxy
        spec:
          securityContext:
            runAsUser: 65534
            runAsGroup: 65534
            fsGroup: 65534
          containers:
          - name: external-forward-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 08:07:45 UTC 2023
    - 701 bytes
    - Viewed (0)
  4. tests/integration/pilot/localwatcher/localsecretwatcher_test.go

    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    var (
    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunnerTest.groovy

    class FileSystemWatchingBuildActionRunnerTest extends Specification {
    
        def watchingHandler = Mock(BuildLifecycleAwareVirtualFileSystem)
        List<Deployment> deployments = []
        def deploymentRegistry = Stub(DeploymentRegistryInternal) {
            getRunningDeployments() >> deployments
        }
        def startParameter = Stub(StartParameterInternal)
        def buildOperationRunner = Mock(BuildOperationRunner)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/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/resource"
    )
    
    var (
    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pkg/controller/validatingadmissionpolicystatus/controller_test.go

    	}{
    		{
    			name: "deployment with correct expression",
    			policy: withGVRMatch([]string{"apps"}, []string{"v1"}, []string{"deployments"}, withValidations([]admissionregistrationv1.Validation{
    				{
    					Expression: "object.spec.replicas > 1",
    				},
    			}, makePolicy("replicated-deployment"))),
    			assertFieldRef: toHaveLengthOf(0),
    			assertWarnings: toHaveLengthOf(0),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. samples/helloworld/README.md

    containers in `helloworld.yaml` are configured with the request.
    The injected istio-proxy containers also include cpu requests,
    making the helloworld service ready for autoscaling.
    
    Enable autoscaling on both versions of the service:
    
    ```bash
    kubectl autoscale deployment helloworld-v1 --cpu-percent=50 --min=1 --max=10
    kubectl autoscale deployment helloworld-v2 --cpu-percent=50 --min=1 --max=10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/bookinfo.yaml

    ##################################################################################################
    # This file defines the services, service accounts, and deployments for the Bookinfo sample.
    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. samples/addons/README.md

    # Telemetry Addons
    
    This directory contains sample deployments of various addons that integrate with Istio. While these applications
    are not a part of Istio, they are essential to making the most of Istio's observability features.
    
    The deployments here are meant to quickly get up and running, and are optimized for this case. As a result,
    they may not be suitable for production. See below for more info on integrating a production grade version of each
    addon.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top