Skip to content

Commit

Permalink
Set controller defaults for 0.7.4 tag (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
Starttoaster authored Aug 30, 2024
1 parent 28fc541 commit 2ca8399
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ spec:
- /manager
args:
- --leader-elect
image: ghcr.io/chia-network/chia-operator:latest
image: ghcr.io/chia-network/chia-operator:0.7.4
name: manager
ports:
- containerPort: 8081
Expand Down
8 changes: 4 additions & 4 deletions internal/controller/common/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,25 +39,25 @@ const (
DefaultChiaCAImageName = "ghcr.io/chia-network/chia-operator/ca-gen"

// DefaultChiaCAImageTag contains the default tag name for the ca-gen image
DefaultChiaCAImageTag = "latest"
DefaultChiaCAImageTag = "0.7.4"

// DefaultChiaImageName contains the default image name for the chia-docker image
DefaultChiaImageName = "ghcr.io/chia-network/chia"

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

// 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.14.3"

// 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.2.1"
)

const (
Expand Down

0 comments on commit 2ca8399

Please sign in to comment.