Skip to content

Commit

Permalink
Update Cassandra chart version to latest (#755)
Browse files Browse the repository at this point in the history
* Remove version field to always use latest

Signed-off-by: Arush Salil <me@aru.sh>

* change helm repo and url to bitnami

Signed-off-by: Arush Salil <me@aru.sh>

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
arush-sal and mergify[bot] committed Sep 10, 2020
1 parent 99f82d4 commit 7736794
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/app/cassandra.go
Expand Up @@ -47,15 +47,15 @@ type CassandraInstance struct {
}

// NewCassandraInstance returns new cassandra application
// Last tested working version "0.13.3"
func NewCassandraInstance(name string) App {
return &CassandraInstance{
name: name,
chart: helm.ChartInfo{
Release: appendRandString(name),
RepoURL: helm.IncubatorRepoURL,
RepoURL: helm.BitnamiRepoURL,
RepoName: helm.BitnamiRepoName,
Chart: "cassandra",
RepoName: helm.IncubatorRepoName,
Version: "0.13.3",
Values: map[string]string{
"image.repo": "kanisterio/cassandra",
"image.tag": "0.34.0",
Expand Down
4 changes: 4 additions & 0 deletions pkg/helm/client.go
Expand Up @@ -31,6 +31,10 @@ type HelmVersion string
const (
DefaultCommandTimeout = 5 * time.Minute

// Add Bitnami charts url
BitnamiRepoName = "bitnami"
BitnamiRepoURL = "https://charts.bitnami.com/bitnami"

// Add elastic charts url
ElasticRepoName = "elastic"
ElasticRepoURL = "https://helm.elastic.co"
Expand Down

0 comments on commit 7736794

Please sign in to comment.