Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update controller defaults for 0.12.0 tag #196

Merged
merged 1 commit into from
Oct 22, 2024
Merged
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 config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
- "--health-probe-bind-address=:8081"
- "--metrics-bind-address=0.0.0.0:8080"
- "--leader-elect"
image: ghcr.io/chia-network/chia-operator:latest
image: ghcr.io/chia-network/chia-operator:0.12.0
name: manager
ports:
- containerPort: 8081
Expand Down
6 changes: 3 additions & 3 deletions internal/controller/common/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ const (
DefaultChiaImageName = "ghcr.io/chia-network/chia"

// DefaultChiaImageTag contains the default tag name for the chia-docker image
DefaultChiaImageTag = "latest"
DefaultChiaImageTag = "2.4.4"

// DefaultChiaExporterImageName contains the default image name for the chia-exporter image
DefaultChiaExporterImageName = "ghcr.io/chia-network/chia-exporter"

// DefaultChiaExporterImageTag contains the default tag name for the chia-exporter image
DefaultChiaExporterImageTag = "latest"
DefaultChiaExporterImageTag = "0.15.4"

// DefaultChiaHealthcheckImageName contains the default image name for the chia-healthcheck image
DefaultChiaHealthcheckImageName = "ghcr.io/chia-network/chia-healthcheck"

// DefaultChiaHealthcheckImageTag contains the default tag name for the chia-healthcheck image
DefaultChiaHealthcheckImageTag = "latest"
DefaultChiaHealthcheckImageTag = "0.3.1"
)

const (
Expand Down