Skip to content

Commit

Permalink
Bump scripts to rc6
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuildthecloud committed Feb 24, 2019
1 parent cb5e425 commit 6602756
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ steps:
dockerfile: package/Dockerfile
password:
from_secret: docker_password
repo: "ibuildthecloud/k3s"
repo: "rancher/k3s"
tag: "${DRONE_TAG}-amd64"
username:
from_secret: docker_username
Expand Down Expand Up @@ -104,7 +104,7 @@ steps:
dockerfile: package/Dockerfile
password:
from_secret: docker_password
repo: "ibuildthecloud/k3s"
repo: "rancher/k3s"
tag: "${DRONE_TAG}-arm64"
username:
from_secret: docker_username
Expand Down Expand Up @@ -166,7 +166,7 @@ steps:
dockerfile: package/Dockerfile
password:
from_secret: docker_password
repo: "ibuildthecloud/k3s"
repo: "rancher/k3s"
tag: "${DRONE_TAG}-arm"
username:
from_secret: docker_username
Expand Down Expand Up @@ -204,8 +204,8 @@ steps:
- linux/amd64
- linux/arm64
- linux/arm
target: "ibuildthecloud/k3s:${DRONE_TAG}"
template: "ibuildthecloud/k3s:${DRONE_TAG}-ARCH"
target: "rancher/k3s:${DRONE_TAG}"
template: "rancher/k3s:${DRONE_TAG}-ARCH"
when:
instance:
- drone-publish.rancher.io
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
server:
image: ibuildthecloud/k3s:v0.1.0-rc3
image: rancher/k3s:v0.1.0-rc6
command: server --disable-agent
environment:
- K3S_CLUSTER_SECRET=somethingtotallyrandom
Expand All @@ -15,7 +15,7 @@ services:
- 6443:6443

node:
image: ibuildthecloud/k3s:v0.1.0-rc3
image: rancher/k3s:v0.1.0-rc6
tmpfs:
- /run
- /var/run
Expand Down
8 changes: 4 additions & 4 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

VERSION=v0.1.0-rc3
VERSION=v0.1.0-rc6

info()
{
Expand Down Expand Up @@ -41,13 +41,13 @@ case $ARCH in
fatal Unknown architecture $ARCH
esac

BINURL=https://github.com/ibuildthecloud/k3s/releases/download/${VERSION}/k3s${SUFFIX}
HASHURL=https://github.com/ibuildthecloud/k3s/releases/download/${VERSION}/sha256sum-${ARCH}.txt
BINURL=https://github.com/rancher/k3s/releases/download/${VERSION}/k3s${SUFFIX}
HASHURL=https://github.com/rancher/k3s/releases/download/${VERSION}/sha256sum-${ARCH}.txt

if [ -d /run/systemd ]; then
SYSTEMD=true
else
fatal "Can not find systemd or Docker to use as a process supervisor for k3s"
fatal "Can not find systemd to use as a process supervisor for k3s"
fi

SUDO=sudo
Expand Down

0 comments on commit 6602756

Please sign in to comment.