Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for status_reason (0.28 sec)

  1. cluster/gce/gci/configure.sh

      "${LOG_CLUSTER_ID}" "${LOG_INSTANCE_NAME}" "${LOG_BOOT_ID}" "${timestamp}" "${bootstep}" "${status}" "${status_reason}" "${latency}"
    }
    
    ######### Main Function ##########
    log-init
    log-start 'ConfigureMain'
    echo "Start to install kubernetes files"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      "${LOG_CLUSTER_ID}" "${LOG_INSTANCE_NAME}" "${LOG_BOOT_ID}" "${timestamp}" "${bootstep}" "${status}" "${status_reason}" "${latency}"
    }
    
    ########### Main Function ###########
    function main() {
      echo "Start to configure instance for kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validation.go

    // with apply.
    type ValidationApplyConfiguration struct {
    	Expression        *string          `json:"expression,omitempty"`
    	Message           *string          `json:"message,omitempty"`
    	Reason            *v1.StatusReason `json:"reason,omitempty"`
    	MessageExpression *string          `json:"messageExpression,omitempty"`
    }
    
    // ValidationApplyConfiguration constructs an declarative configuration of the Validation type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // Values of Status.Status
    const (
    	StatusSuccess = "Success"
    	StatusFailure = "Failure"
    )
    
    // StatusReason is an enumeration of possible failure causes.  Each StatusReason
    // must map to a single HTTP status code, but multiple reasons may map
    // to the same HTTP status code.
    // TODO: move to apiserver
    type StatusReason string
    
    const (
    	// StatusReasonUnknown means the server has declined to indicate a specific reason.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/policy_decision.go

    type PolicyDecision struct {
    	Action     PolicyDecisionAction
    	Evaluation PolicyDecisionEvaluation
    	Message    string
    	Reason     metav1.StatusReason
    	Elapsed    time.Duration
    }
    
    type PolicyAuditAnnotationAction string
    
    const (
    	// AuditAnnotationActionPublish indicates that the audit annotation should be
    	// published with the audit event.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/validation.go

    // with apply.
    type ValidationApplyConfiguration struct {
    	Expression        *string          `json:"expression,omitempty"`
    	Message           *string          `json:"message,omitempty"`
    	Reason            *v1.StatusReason `json:"reason,omitempty"`
    	MessageExpression *string          `json:"messageExpression,omitempty"`
    }
    
    // ValidationApplyConfiguration constructs an declarative configuration of the Validation type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 17:03:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/validation.go

    // with apply.
    type ValidationApplyConfiguration struct {
    	Expression        *string          `json:"expression,omitempty"`
    	Message           *string          `json:"message,omitempty"`
    	Reason            *v1.StatusReason `json:"reason,omitempty"`
    	MessageExpression *string          `json:"messageExpression,omitempty"`
    }
    
    // ValidationApplyConfiguration constructs an declarative configuration of the Validation type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. operator/pkg/metrics/utils.go

    		With(RenderErrorLabel.Value(string(reason))).
    		Increment()
    }
    
    // CountCRFetchFail increments the count of CR fetch failure
    // for a given name and the error status.
    func CountCRFetchFail(reason metav1.StatusReason) {
    	errorReason := string(reason)
    	if reason == metav1.StatusReasonUnknown {
    		errorReason = "unknown"
    	}
    	GetCRErrorTotal.
    		With(CRFetchErrorReasonLabel.Value(errorReason)).
    		Increment()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 20 18:48:20 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/controller/monitoring.go

    	metricWebhookConfigurationLoadError = monitoring.NewSum(
    		"galley_validation_config_load_error",
    		"k8s webhook configuration (re)load error",
    	)
    )
    
    func reportValidationConfigUpdateError(reason metav1.StatusReason) {
    	metricWebhookConfigurationUpdateError.With(reasonLabel.Value(string(reason))).Increment()
    }
    
    func reportValidationConfigLoadError(reason string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/remotecommand/constants.go

    	// attachment/execution. It is the 5th version of the subprotocol and
    	// adds support for a CLOSE signal.
    	StreamProtocolV5Name = "v5.channel.k8s.io"
    
    	NonZeroExitCodeReason = metav1.StatusReason("NonZeroExitCode")
    	ExitCodeCauseType     = metav1.CauseType("ExitCode")
    
    	// RemoteCommand stream identifiers. The first three identifiers (for STDIN,
    	// STDOUT, STDERR) are the same as their file descriptors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top