cloudfoundry/cf-k8s-controllers

View on GitHub
controllers/api/v1alpha1/runnerinfo_types.go

Summary

Maintainability
A
0 mins
Test Coverage
/*
Copyright 2021.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
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.
*/

package v1alpha1

import (
    metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

// RunnerInfoSpec defines the desired state of RunnerInfo
type RunnerInfoSpec struct {
    // INSERT ADDITIONAL SPEC FIELDS - desired state of cluster

    RunnerName string `json:"runnerName"`
}

// RunnerInfoStatus defines the observed state of RunnerInfo
type RunnerInfoStatus struct {
    //+kubebuilder:validation:Optional
    Conditions []metav1.Condition `json:"conditions,omitempty"`

    Capabilities RunnerInfoCapabilities `json:"capabilities"`

    // ObservedGeneration captures the latest generation of the RunnerInfo that has been reconciled
    ObservedGeneration int64 `json:"observedGeneration,omitempty"`
}

type RunnerInfoCapabilities struct {
    RollingDeploy bool `json:"rollingDeploy,omitempty"`
}

//+kubebuilder:object:root=true
//+kubebuilder:subresource:status
//+kubebuilder:resource:path=runnerinfos

// RunnerInfo is the Schema for the runnerinfos API
type RunnerInfo struct {
    metav1.TypeMeta   `json:",inline"`
    metav1.ObjectMeta `json:"metadata,omitempty"`

    Spec   RunnerInfoSpec   `json:"spec,omitempty"`
    Status RunnerInfoStatus `json:"status,omitempty"`
}

//+kubebuilder:object:root=true

// RunnerInfoList contains a list of RunnerInfo
type RunnerInfoList struct {
    metav1.TypeMeta `json:",inline"`
    metav1.ListMeta `json:"metadata,omitempty"`
    Items           []RunnerInfo `json:"items"`
}

func init() {
    SchemeBuilder.Register(&RunnerInfo{}, &RunnerInfoList{})
}