-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add cloud-init capability for Ubuntu #2
base: master
Are you sure you want to change the base?
Conversation
…ser config while cloud-init still runs
Integrate the generation into a docker image. Add Ubuntu 22.04 Update and fix deployment
I guess this needs some rebasing / squashing? |
Yes we just merged into master in our fork and will have to cleanup in the next step |
Allow generation of images based on ubuntu 24.04
@windrad6 Do you want to have these changes reviewed? |
VAULT_KEY=$(tr -dc A-Za-z0-9 </dev/urandom | head -c 20; echo) | ||
if [ -z "$VAULT_KEY" ]; then | ||
echo "Generate ansible secret" | ||
VAULT_KEY=$(tr -dc A-Za-z0-9 </dev/urandom | head -c 20; echo) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VAULT_KEY=$(tr -dc A-Za-z0-9 </dev/urandom | head -c 20; echo) | |
VAULT_KEY=$(tr -dc A-Za-z0-9 < /dev/urandom | head -c 20; echo) |
@@ -86,6 +86,9 @@ echo "Using token: ${TOKEN}" | |||
echo "Using flavor: ${FLAVOR}" | |||
echo "Using repo: ${GIT_URL}" | |||
echo "Using branch: ${GIT_BRANCH}" | |||
if [! -z "$VAULT_KEY" ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if [! -z "$VAULT_KEY" ]; then | |
if [ ! -z "$VAULT_KEY" ]; then |
No description provided.