Skip to content
This repository was archived by the owner on Jan 19, 2018. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions atomicapp/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@
PROVIDER_TLS_VERIFY_KEY = "provider-tlsverify"
PROVIDER_CA_KEY = "provider-cafile"

K8S_DEFAULT_API = "http://localhost:8080"

# Persistent Storage Formats
PERSISTENT_STORAGE_FORMAT = ["ReadWriteOnce", "ReadOnlyMany", "ReadWriteMany"]

Expand Down
4 changes: 3 additions & 1 deletion atomicapp/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ class Provider(object):
dryrun = None
container = False
config_file = None
__artifacts = None

# By default, no artifacts are loaded
__artifacts = []

@property
def artifacts(self):
Expand Down
Loading