Skip to content

Commit

Permalink
Merge pull request #1 from sourceboat/feature/sentry-cli
Browse files Browse the repository at this point in the history
add sentry-cli
  • Loading branch information
pehbehbeh authored Aug 7, 2019
2 parents c01a313 + 3f7e525 commit 63ddec4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
9 changes: 8 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ FROM rancher/cli:v2.0.4
RUN apk update \
&& apk add --no-cache \
ca-certificates \
curl
curl \
bash

# change default shell
SHELL ["/bin/bash", "-c"]

# install sentry-cli
RUN curl -sL https://sentry.io/get-cli/ | bash

# install kubectl
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.12.0/bin/linux/amd64/kubectl \
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
[![MicroBadger Layers](https://img.shields.io/microbadger/layers/sourceboat/rancher-deploy.svg?style=flat-square)](https://microbadger.com/images/sourceboat/rancher-deploy)

This docker image enables simple deployments to Rancher.
It is a small alpine image with [Rancher CLI](https://rancher.com/docs/rancher/v2.x/en/cli/) `rancher`
and [Kubernetes CLI](https://kubernetes.io/docs/tasks/tools/install-kubectl/) `kubectl` installed.

## What's included?

- [Kubernetes CLI](https://kubernetes.io/docs/tasks/tools/install-kubectl/) `kubectl`
- [Rancher CLI](https://rancher.com/docs/rancher/v2.x/en/cli/) `rancher`
- [Sentry CLI](https://docs.sentry.io/cli/) `sentry-cli`

It also comes with a custom `rancher-redeploy` and `rancher-exec` command helper (see usage section).

Expand Down

0 comments on commit 63ddec4

Please sign in to comment.