Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for deploymentID (0.18 sec)

  1. samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql.yaml

    #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v2-mysql
      labels:
        app: ratings
        version: v2-mysql
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v2-mysql
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-ratings-v2.yaml

    #   limitations under the License.
    
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-ratings-v2
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v2
      labels:
        app: ratings
        version: v2
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v2
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/bookinfo-mysql.yaml

    kind: Service
    metadata:
      name: mysqldb
      labels:
        app: mysqldb
        service: mysqldb
    spec:
      ports:
      - port: 3306
        name: tcp
      selector:
        app: mysqldb
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: mysqldb-v1
      labels:
        app: mysqldb
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: mysqldb
          version: v1
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. docs/en/docs/fastapi-cli.md

    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 23:39:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

          enabled: true
          # The values aren't mutable due to a current PodDisruptionBudget limitation
          # minAvailable: 1
    
        # A minimal set of requested resources to applied to all deployments so that
        # Horizontal Pod Autoscaler will be able to function (if set).
        # Each component can overwrite these default values by adding its own resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

        defaultPodDisruptionBudget:
          enabled: true
          # The values aren't mutable due to a current PodDisruptionBudget limitation
          # minAvailable: 1
        # A minimal set of requested resources to applied to all deployments so that
        # Horizontal Pod Autoscaler will be able to function (if set).
        # Each component can overwrite these default values by adding its own resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

            "org/gradle/build/**",
            "org/gradle/buildconfiguration/**",
            "org/gradle/buildinit/**",
            "org/gradle/caching/**",
            "org/gradle/concurrent/**",
            "org/gradle/deployment/**",
            "org/gradle/external/javadoc/**",
            "org/gradle/ide/**",
            "org/gradle/ivy/**",
            "org/gradle/jvm/**",
            "org/gradle/language/**",
            "org/gradle/maven/**",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. samples/addons/jaeger.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: jaeger
      namespace: istio-system
      labels:
        app: jaeger
    spec:
      selector:
        matchLabels:
          app: jaeger
      template:
        metadata:
          labels:
            app: jaeger
            sidecar.istio.io/inject: "false"
          annotations:
            prometheus.io/scrape: "true"
            prometheus.io/port: "14269"
        spec:
          containers:
            - name: jaeger
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. docs/pt/docs/fastapi-cli.md

    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    			AvailableReplicas:   1,
    			UnavailableReplicas: 4,
    		},
    	}
    
    	tests := []struct {
    		deployment apps.Deployment
    		options    printers.GenerateOptions
    		expected   []metav1.TableRow
    	}{
    		// Test Deployment with no generate options.
    		{
    			deployment: testDeployment,
    			options:    printers.GenerateOptions{},
    			// Columns: Name, ReadyReplicas, UpdatedReplicas, AvailableReplicas, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top