Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 382 for PeriodSeconds (0.18 sec)

  1. pkg/apis/autoscaling/v2/defaults_test.go

    			selectPolicy:                 &maxPolicy,
    			expectedPolicies: []autoscalingv2.HPAScalingPolicy{
    				{Type: autoscalingv2.PodsScalingPolicy, Value: 1, PeriodSeconds: 2},
    				{Type: autoscalingv2.PercentScalingPolicy, Value: 3, PeriodSeconds: 4},
    			},
    			expectedStabilization: utilpointer.Int32(25),
    			expectedSelectPolicy:  string(autoscalingv2.MaxChangePolicySelect),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. pkg/apis/autoscaling/v2beta2/defaults_test.go

    			selectPolicy:                 &maxPolicy,
    			expectedPolicies: []autoscalingv2.HPAScalingPolicy{
    				{Type: autoscalingv2.PodsScalingPolicy, Value: 1, PeriodSeconds: 2},
    				{Type: autoscalingv2.PercentScalingPolicy, Value: 3, PeriodSeconds: 4},
    			},
    			expectedStabilization: utilpointer.Int32(25),
    			expectedSelectPolicy:  string(autoscalingv2.MaxPolicySelect),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions-no-proxy.yaml

              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. samples/grpc-echo/grpc-echo.yaml

                  path: /
                  port: 8080
                  scheme: HTTP
                initialDelaySeconds: 1
                periodSeconds: 2
                successThreshold: 1
                timeoutSeconds: 1
              startupProbe:
                failureThreshold: 10
                periodSeconds: 10
                successThreshold: 1
                tcpSocket:
                  port: tcp-health-port
                timeoutSeconds: 1
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/testdata/proxyless-custom-image.yaml

              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/testdata/multiversion.yaml

              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

              initialDelaySeconds: 1
              periodSeconds: 2
              failureThreshold: 10
            livenessProbe:
              tcpSocket:
                port: tcp-health-port
              initialDelaySeconds: 10
              periodSeconds: 10
              failureThreshold: 10
            startupProbe:
              tcpSocket:
                port: tcp-health-port
              periodSeconds: 1
              failureThreshold: 10
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/hpascalingpolicy.go

    // with apply.
    type HPAScalingPolicyApplyConfiguration struct {
    	Type          *v2.HPAScalingPolicyType `json:"type,omitempty"`
    	Value         *int32                   `json:"value,omitempty"`
    	PeriodSeconds *int32                   `json:"periodSeconds,omitempty"`
    }
    
    // HPAScalingPolicyApplyConfiguration constructs an declarative configuration of the HPAScalingPolicy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/hpascalingpolicy.go

    // with apply.
    type HPAScalingPolicyApplyConfiguration struct {
    	Type          *v2beta2.HPAScalingPolicyType `json:"type,omitempty"`
    	Value         *int32                        `json:"value,omitempty"`
    	PeriodSeconds *int32                        `json:"periodSeconds,omitempty"`
    }
    
    // HPAScalingPolicyApplyConfiguration constructs an declarative configuration of the HPAScalingPolicy type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top