-
Notifications
You must be signed in to change notification settings - Fork 0
document --stack
option for CLI
#86
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
base: main
Are you sure you want to change the base?
Conversation
🎊 PR Preview has been successfully built and deployed to https://localstack-snowflake-docs-preview-pr-86.surge.sh 🎊 |
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.
minor comments. otherwise happy
@@ -44,12 +44,12 @@ jobs: | |||
run: | |||
docker pull localstack/snowflake:latest & | |||
pip install localstack | |||
IMAGE_NAME=localstack/snowflake localstack start -d | |||
localstack start --stack snowflake |
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.
The original command starts in detached mode while the new command is without the -d flag - is it deliberate or omission?
@@ -70,11 +70,11 @@ jobs: | |||
command: | | |||
pip3 install localstack | |||
docker pull localstack/snowflake | |||
IMAGE_NAME=localstack/snowflake localstack start -d | |||
localstack start --stack snowflake |
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.
same as above
@@ -108,7 +108,7 @@ test: | |||
- docker pull localstack/snowflake:latest | |||
- dind_ip="$(getent hosts docker | cut -d' ' -f1)" | |||
- echo "${dind_ip} localhost.localstack.cloud " >> /etc/hosts | |||
- DOCKER_HOST="tcp://${dind_ip}:2375" IMAGE_NAME=localstack/snowflake localstack start -d | |||
- DOCKER_HOST="tcp://${dind_ip}:2375" localstack start --stack snowflake |
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.
same here
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.
Thanks for trying this CLI option, @HarshCasper!
LGTM, also agree on keeping the detached -d
option in the three instances as @mmaureenliu mentioned above[1].
The stacks terminology is still shaping, but it's in the right path. CLI has the --stack option, and the console will have a new Stacks section[2] in the main navigation on the next deployment.
No description provided.