comment out
Some checks failed
Build images / Run e2e tests (push) Failing after 1m16s
Build images / Run unit test (push) Successful in 3m25s
Tests / Run on Ubuntu (push) Successful in 3m53s
Build images / Run lint test (push) Failing after 6m34s
Build images / Build docker image (push) Has been skipped
Lint / Run on Ubuntu (push) Failing after 6m57s
E2E Tests / Run on Ubuntu (push) Failing after 8m16s

This commit is contained in:
Chris Richardson
2025-07-02 14:32:52 -04:00
parent d806e0d5ca
commit 819acfa40c

View File

@@ -24,7 +24,7 @@ import (
// NOTE: json tags are required. Any new fields you add must have json tags for the fields to be serialized.
// LocustClusterSpec defines the desired state of LocustCluster.
/*
type ResourcesSpec struct {
MaxCpu string `json:"maxCpu,omitempty" protobuf:"bytes,1,name=maxCpu"`
MinCpu string `json:"minCpu,omitempty" protobuf:"bytes,2,name=minCpu"`
@@ -100,13 +100,17 @@ type SecretsSpec struct {
SecretsKeys []SecretsKeys `json:"secretKeys" protobuf:"bytes,2,name=secretKeys"`
}
*/
// LocustClusterSpec defines the desired state of LocustCluster
type LocustClusterSpec struct {
Leader LeaderSpec `json:"leader,omitempty" protobuf:"bytes,1,rep,name=leader"`
// Worker WorkerSpec `json:"worker" protobuf:"bytes,2,rep,name=worker"`
// Metrics MetricsSpec `json:"metrics" protobuf:"bytes,3,rep,name=metrics"`
Infrastructure []InfrastructureSpec `json:"infrastructure,omitempty" protobuf:"bytes,4,rep,name=infrastructure"`
Secrets []SecretsSpec `json:"secrets,omitempty" protobuf:"bytes,5,rep,name=secrets"`
/*
Leader LeaderSpec `json:"leader,omitempty" protobuf:"bytes,1,rep,name=leader"`
// Worker WorkerSpec `json:"worker" protobuf:"bytes,2,rep,name=worker"`
// Metrics MetricsSpec `json:"metrics" protobuf:"bytes,3,rep,name=metrics"`
Infrastructure []InfrastructureSpec `json:"infrastructure,omitempty" protobuf:"bytes,4,rep,name=infrastructure"`
Secrets []SecretsSpec `json:"secrets,omitempty" protobuf:"bytes,5,rep,name=secrets"`
*/
}
// LocustClusterStatus defines the observed state of LocustCluster.