Skip to content

Commit

Permalink
ignore add to pull
Browse files Browse the repository at this point in the history
  • Loading branch information
csabalep committed Oct 12, 2018
1 parent 50f5dda commit 2dbc40e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion poco/__init__.py
@@ -1 +1 @@
__version__ = '0.96.2'
__version__ = '0.96.3'
2 changes: 1 addition & 1 deletion poco/poco.py
Expand Up @@ -29,7 +29,7 @@


END_STRING = """See 'poco help <command>' for more information on a specific command."""
__version__ = '0.96.2'
__version__ = '0.96.3'


class Poco(object):
Expand Down
4 changes: 2 additions & 2 deletions poco/services/resources/command-hierarchy.yml
Expand Up @@ -11,14 +11,14 @@
},
start: {
before: true,
docker: ["build", "pull", "config", ["up", "-d"], "ps"],
docker: ["build", ["pull", "--ignore-pull-failures"] , "config", ["up", "-d"], "ps"],
kubernetes: ["apply", ["get", "all", "--all-namespaces"]],
helm: [["install", "--name"]],
after: true
},
restart: {
before: true,
docker: ["stop", "ps", "build", "pull", "config", ["up", "-d"], "ps"],
docker: ["stop", "ps", "build", ["pull", "--ignore-pull-failures"], "config", ["up", "-d"], "ps"],
kubernetes: ["apply", ["get", "all", "--all-namespaces"]],
helm: ["upgrade"],
after: true
Expand Down

0 comments on commit 2dbc40e

Please sign in to comment.