Skip to content

Commit 0648375

Browse files
committed
Merge branch 'release/1.2.0'
2 parents 1a86808 + 63ddec4 commit 0648375

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

Dockerfile

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ FROM rancher/cli:v2.0.4
44
RUN apk update \
55
&& apk add --no-cache \
66
ca-certificates \
7-
curl
7+
curl \
8+
bash
9+
10+
# change default shell
11+
SHELL ["/bin/bash", "-c"]
12+
13+
# install sentry-cli
14+
RUN curl -sL https://sentry.io/get-cli/ | bash
815

916
# install kubectl
1017
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.12.0/bin/linux/amd64/kubectl \

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
# sourceboat/rancher-deploy
22

3-
[![Docker Build Status](https://img.shields.io/docker/build/sourceboat/rancher-deploy.svg?style=flat-square)](https://hub.docker.com/r/sourceboat/rancher-deploy/builds/)
3+
[![Docker Build Status](https://img.shields.io/docker/cloud/build/sourceboat/rancher-deploy.svg?style=flat-square)](https://hub.docker.com/r/sourceboat/rancher-deploy/builds/)
44
[![Release](https://img.shields.io/github/release/sourceboat/rancher-deploy.svg?style=flat-square)](https://github.com/sourceboat/rancher-deploy/releases)
55
[![Docker Pulls](https://img.shields.io/docker/pulls/sourceboat/rancher-deploy.svg?style=flat-square)](https://hub.docker.com/r/sourceboat/rancher-deploy/)
66
[![MicroBadger Size](https://img.shields.io/microbadger/image-size/sourceboat/rancher-deploy.svg?style=flat-square)](https://microbadger.com/images/sourceboat/rancher-deploy)
77
[![MicroBadger Layers](https://img.shields.io/microbadger/layers/sourceboat/rancher-deploy.svg?style=flat-square)](https://microbadger.com/images/sourceboat/rancher-deploy)
88

99
This docker image enables simple deployments to Rancher.
10-
It is a small alpine image with [Rancher CLI](https://rancher.com/docs/rancher/v2.x/en/cli/) `rancher`
11-
and [Kubernetes CLI](https://kubernetes.io/docs/tasks/tools/install-kubectl/) `kubectl` installed.
10+
11+
## What's included?
12+
13+
- [Kubernetes CLI](https://kubernetes.io/docs/tasks/tools/install-kubectl/) `kubectl`
14+
- [Rancher CLI](https://rancher.com/docs/rancher/v2.x/en/cli/) `rancher`
15+
- [Sentry CLI](https://docs.sentry.io/cli/) `sentry-cli`
1216

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

0 commit comments

Comments
 (0)