Skip to content

Commit

Permalink
Set controller defaults for 0.11.2 tag (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
Starttoaster authored Oct 19, 2024
1 parent e9d5456 commit 6a90028
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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.11.2
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

0 comments on commit 6a90028

Please sign in to comment.