Skip to content

Commit

Permalink
Fix release script (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha authored May 28, 2018
1 parent d7bedea commit 264749a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def check_antipackage():
from collections import Counter

libbuild.REPO_ROOT = expandvars('$GOPATH') + '/src/github.com/kubedb/cli'
DATABASES = ['mongodb', 'memcached', 'redis']
DATABASES = ['postgres', 'elasticsearch', 'mysql', 'mongodb', 'memcached', 'redis']
RELEASE_TAGS = {
'cli': '0.8.0-rc.0',
'operator': '0.8.0-rc.0',
Expand Down Expand Up @@ -259,7 +259,7 @@ def release_cli(self):
def release(comp=None):
cat = Kitten()
if comp is None:
# cat.release_apimachinery()
cat.release_apimachinery()
for name in DATABASES:
cat.release_db(name)
cat.release_server_binary('operator')
Expand Down

0 comments on commit 264749a

Please sign in to comment.