Skip to content

Commit

Permalink
Revert "Update Cassandra chart version to latest" (#765)
Browse files Browse the repository at this point in the history
* Revert "Update Cassandra chart version to latest (#755)"

This reverts commit 7736794.

* Update cassandra.go

* Update cassandra.go
  • Loading branch information
Vaibhav Kamra committed Sep 12, 2020
1 parent 8049a4f commit b89aa8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
8 changes: 4 additions & 4 deletions pkg/app/cassandra.go
Expand Up @@ -47,17 +47,17 @@ 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.BitnamiRepoURL,
RepoName: helm.BitnamiRepoName,
RepoURL: helm.IncubatorRepoURL,
Chart: "cassandra",
RepoName: helm.IncubatorRepoName,
Version: "0.13.3",
Values: map[string]string{
"image.repository": "kanisterio/cassandra",
"image.repo": "kanisterio/cassandra",
"image.tag": "0.34.0",
"config.cluster_size": "1",
},
Expand Down
4 changes: 0 additions & 4 deletions pkg/helm/client.go
Expand Up @@ -31,10 +31,6 @@ 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 b89aa8e

Please sign in to comment.