Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ prod-quick: prod-build-quick

prod-build-quick: pre-build
@echo "Quick build without running tests..."
docker build --build-arg RUN_TESTS=0 --build-arg BUILD_VERSION=$(BUILD_VERSION) --build-arg BUILD_INFO=$(BUILD_INFO) -t k8s-bigip-ctlr:latest -f build-tools/Dockerfile.$(BASE_OS) .
docker build --platform linux/amd64 --build-arg RUN_TESTS=0 --build-arg BUILD_VERSION=$(BUILD_VERSION) --build-arg BUILD_INFO=$(BUILD_INFO) -t k8s-bigip-ctlr:latest -f build-tools/Dockerfile.$(BASE_OS) .

dev-license: pre-build
@echo "Running with tests and licenses generated will be in all_attributions.txt..."
Expand Down
10 changes: 9 additions & 1 deletion config/apis/cis/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ type CustomResourceStatus struct {
Error string `json:"error,omitempty"`
}

type TLSProfileStatus struct {
Status string `json:"status,omitempty"`
LastUpdated metav1.Time `json:"lastUpdated,omitempty"`
Error string `json:"error,omitempty"`
}

// VirtualServerSpec is the spec of the VirtualServer resource.
type VirtualServerSpec struct {
Host string `json:"host,omitempty"`
Expand Down Expand Up @@ -196,13 +202,15 @@ type VirtualServerList struct {

// +genclient
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
// +kubebuilder:subresource:status

// TLSProfile is a Custom Resource for TLS server
type TLSProfile struct {
metav1.TypeMeta `json:",inline"`
metav1.ObjectMeta `json:"metadata,omitempty"`

Spec TLSProfileSpec `json:"spec"`
Spec TLSProfileSpec `json:"spec"`
Status TLSProfileStatus `json:"status,omitempty"`
}

// TLSProfileSpec is spec for TLSServer
Expand Down
Loading