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
orbs:
kurtosis-docs-checker: kurtosis-tech/docs-checker@0.2.0
kurtosis-docs-checker: kurtosis-tech/docs-checker@0.2.1
executors:
ubuntu_vm:
......@@ -14,7 +14,7 @@ executors:
# 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
jobs:
run_startosis:
run_starlark:
executor: ubuntu_vm
steps:
......@@ -43,14 +43,12 @@ workflows:
filters:
branches:
ignore:
- develop
- master
- run_startosis:
- run_starlark:
context:
# This pulls in KurtosisBot's Github token, so that we can read from our private repos
- github-user
filters:
branches:
ignore:
- develop
- master
\ No newline at end of file
......@@ -8,6 +8,7 @@
- Moved away from `load` infavor of `import_module`
- 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
- Adjusted to the new render templates config
# 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"
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):
......
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