-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from Chaffelson/multicloudtesting
v0.1.0 Release
- Loading branch information
Showing
18 changed files
with
1,130 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ sshkey_pub: ssh-rsa CHANGEME | |
|
||
|
||
# ------------ DEFAULTS --------------- | ||
|
||
profilever: 2 | ||
# URIs for additional resources to be loaded and processed by the orchestrator. | ||
# Loc's can be either local or github | ||
# URI should point to the folder root of the resources | ||
|
@@ -47,11 +47,12 @@ resources: | |
# and users and environments | ||
# Empty tags will be autopopulated with useful defaults | ||
tags: | ||
Owner: [email protected] | ||
Service: Whoville Ephemeral Cluster | ||
BusinessUnit: DevOps | ||
StartDate: | ||
EndDate: | ||
deployer: dchaffelson | ||
deploytool: whoville | ||
service: whovilleephemeralcluster | ||
businessunit: se | ||
startdate: | ||
enddate: | ||
|
||
|
||
# The base name of your objectsore bucket if using objectstore definitions, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
#remount tmpfs to ensure NOEXEC is disabled | ||
mount -o remount,size=10G /tmp | ||
mount -o remount,exec /tmp | ||
if grep -Fxq "/etc/fstab" /tmp | ||
then | ||
mount -o remount,size=10G /tmp | ||
mount -o remount,exec /tmp | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.0.1 | ||
current_version = 0.1.0 | ||
commit = True | ||
tag = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,6 @@ | |
""" | ||
__author__ = """Daniel Chaffelson""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.0.1' | ||
__version__ = '0.1.0' | ||
__all__ = ['config', 'deploy', 'utils', 'security', 'mayor', 'infra', | ||
'cloudbreak', 'actions'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.