This file contains hidden or 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
FROM registry.fedoraproject.org/fedora:rawhide | |
ENV NAME=kubernetes-master VERSION=0 RELEASE=0 ARCH=x86_64 | |
LABEL bzcomponent="$NAME" \ | |
name="$FGC/$NAME" \ | |
version="$VERSION" \ | |
release="$RELEASE.$DISTTAG" \ | |
architecture="$ARCH" \ | |
maintainer="Jason Brooks <[email protected]>" |
This file contains hidden or 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
#!/usr/bin/python | |
""" | |
Example script creating a Heat stack and waiting for its completion by | |
receiving events over Zaqar. | |
Usage: | |
$ IDENTITY_API_VERSION=3 source devstack/openrc | |
$ create_stack_complete.py template.yaml stack_name | |
""" |