Skip to content

Commit

Permalink
Set controller defaults for 0.8.1 tag (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
Starttoaster authored Sep 11, 2024
1 parent 45edf2c commit 3e0d27b
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.8.1
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 @@ -42,25 +42,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.8.1"

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

const (
Expand Down

0 comments on commit 3e0d27b

Please sign in to comment.