Skip to content

Commit

Permalink
move gists to robusta-lab
Browse files Browse the repository at this point in the history
  • Loading branch information
arikalon1 committed Jun 21, 2021
1 parent d6f277c commit 0d58af8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
uses: arikalon1/actions-deploy-gist@v1
with:
token: ${{ secrets.GIST_TOKEN }}
gist_id: 1196dd6496707d42d85d96f7e6b5d000
gist_id: 6b809d508dfc3d8d92afc92c7bbbe88e
gist_file_name: robusta-${{ env.RELEASE_VER }}.yaml
file_path: ./robusta.yaml

Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Lets try out a default playbook which sends a Slack notification whenever pods c

.. code-block:: python
kubectl apply -f https://gist.githubusercontent.com/arikalon1/4fad3cee4c6921679c513a953cd615ce/raw/crashpod.yaml
kubectl apply -f https://gist.githubusercontent.com/robusta-lab/283609047306dc1f05cf59806ade30b6/raw/crashpod.yaml
Lets verify we have a crashing pod:

Expand Down
4 changes: 2 additions & 2 deletions src/robusta/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

SLACK_INTEGRATION_SERVICE_ADDRESS = os.environ.get('SLACK_INTEGRATION_SERVICE_ADDRESS', "https://robusta.dev/integrations/slack/get-token")
EXAMPLES_BUCKET_URL = f"https://storage.googleapis.com/robusta-public/{__version__}"
DOWNLOAD_URL = f"https://gist.githubusercontent.com/arikalon1/1196dd6496707d42d85d96f7e6b5d000/raw/robusta-{__version__}.yaml"
CRASHPOD_YAML = "https://gist.githubusercontent.com/arikalon1/4fad3cee4c6921679c513a953cd615ce/raw/crashpod.yaml"
DOWNLOAD_URL = f"https://gist.githubusercontent.com/robusta-lab/6b809d508dfc3d8d92afc92c7bbbe88e/raw/robusta-{__version__}.yaml"
CRASHPOD_YAML = "https://gist.githubusercontent.com/robusta-lab/283609047306dc1f05cf59806ade30b6/raw/crashpod.yaml"

def exec_in_robusta_runner(cmd, tries=1, time_between_attempts=10, error_msg="error running cmd"):
cmd = ["kubectl", "exec", "-n", "robusta", "-it", "deploy/robusta-runner", "--", "bash", "-c", cmd]
Expand Down

0 comments on commit 0d58af8

Please sign in to comment.