-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
129 changed files
with
815 additions
and
471 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
artifacts/carbon_darwin_amd64 | ||
artifacts/carbon_windows_amd64 | ||
artifacts/stanza_darwin_amd64 | ||
artifacts/stanza_windows_amd64 | ||
.git/ | ||
dev/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Description | ||
|
||
If reporting a bug, please fill out the following additional information: | ||
- Version (`carbon version`): | ||
- Version (`stanza version`): | ||
- OS version: | ||
- Config file: | ||
- Debug logs (use `--debug` flag): |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM ubuntu:bionic | ||
|
||
RUN mkdir -p /carbon_home | ||
ENV CARBON_HOME=/carbon_home | ||
RUN echo "pipeline:\n" >> /carbon_home/config.yaml | ||
RUN mkdir -p /stanza_home | ||
ENV STANZA_HOME=/stanza_home | ||
RUN echo "pipeline:\n" >> /stanza_home/config.yaml | ||
RUN apt-get update && apt-get install -y systemd ca-certificates | ||
|
||
COPY ./artifacts/carbon_linux_amd64 /carbon_home/carbon | ||
COPY ./artifacts/carbon-plugins.tar.gz /tmp/carbon-plugins.tar.gz | ||
RUN tar -zxvf /tmp/carbon-plugins.tar.gz -C /carbon_home/ | ||
ENTRYPOINT /carbon_home/carbon \ | ||
--config /carbon_home/config.yaml \ | ||
--database /carbon_home/carbon.db \ | ||
--plugin_dir /carbon_home/plugins | ||
COPY ./artifacts/stanza_linux_amd64 /stanza_home/stanza | ||
COPY ./artifacts/stanza-plugins.tar.gz /tmp/stanza-plugins.tar.gz | ||
RUN tar -zxvf /tmp/stanza-plugins.tar.gz -C /stanza_home/ | ||
ENTRYPOINT /stanza_home/stanza \ | ||
--config /stanza_home/config.yaml \ | ||
--database /stanza_home/stanza.db \ | ||
--plugin_dir /stanza_home/plugins |
This file contains 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
Oops, something went wrong.