Commit db0cbde9 authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

Merge pull request #22 from kurtosis-tech/gyani/render

adjust to new render templates config
parents 7311d884 af666f88
version: 2.1 version: 2.1
orbs: orbs:
kurtosis-docs-checker: kurtosis-tech/docs-checker@0.2.0 kurtosis-docs-checker: kurtosis-tech/docs-checker@0.2.1
executors: executors:
ubuntu_vm: ubuntu_vm:
...@@ -14,7 +14,7 @@ executors: ...@@ -14,7 +14,7 @@ executors:
# images), so we run everything inside a single job. # images), so we run everything inside a single job.
# See also: https://discuss.circleci.com/t/can-docker-images-be-preserved-between-jobs-in-a-workflow-without-a-manual-load-save/23388/12 # See also: https://discuss.circleci.com/t/can-docker-images-be-preserved-between-jobs-in-a-workflow-without-a-manual-load-save/23388/12
jobs: jobs:
run_startosis: run_starlark:
executor: ubuntu_vm executor: ubuntu_vm
steps: steps:
...@@ -43,14 +43,12 @@ workflows: ...@@ -43,14 +43,12 @@ workflows:
filters: filters:
branches: branches:
ignore: ignore:
- develop
- master - master
- run_startosis: - run_starlark:
context: context:
# This pulls in KurtosisBot's Github token, so that we can read from our private repos # This pulls in KurtosisBot's Github token, so that we can read from our private repos
- github-user - github-user
filters: filters:
branches: branches:
ignore: ignore:
- develop
- master - master
\ No newline at end of file
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
- Moved away from `load` infavor of `import_module` - Moved away from `load` infavor of `import_module`
- Moved away from `store_files_from_service` to `store_service_files` - Moved away from `store_files_from_service` to `store_service_files`
- Removed empty `ports` from a few service configs as passing it is now optional - Removed empty `ports` from a few service configs as passing it is now optional
- Adjusted to the new render templates config
# 0.0.1 # 0.0.1
......
#!/usr/bin/env bash
# 2021-07-08 WATERMARK, DO NOT REMOVE - This script was generated from the Kurtosis Bash script template
set -euo pipefail # Bash "strict mode"
script_dirpath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
root_dirpath="$(dirname "${script_dirpath}")"
# ==================================================================================================
# Main Logic
# ==================================================================================================
if ! "kurtosis" "exec" "${root_dirpath}"; then
echo "Error: running the startosis script"
fi
...@@ -3,7 +3,7 @@ UDP_PROTOCOL = "UDP" ...@@ -3,7 +3,7 @@ UDP_PROTOCOL = "UDP"
def new_template_and_data(template, template_data_json): def new_template_and_data(template, template_data_json):
return {"template": template, "template_data_json": template_data_json} return struct(template = template, data = template_data_json)
def path_join(*args): def path_join(*args):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment