From 67f5d1008eef96f13dbf8910092155b7aa1bcee4 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Tue, 23 Jul 2019 13:17:56 +0200 Subject: o Merging in Terraform setup. --- apps/mi-gateway/Dockerfile | 16 + apps/mi-gateway/package.json | 11 + apps/mi-gateway/server.js | 31 + apps/mi-processor/Dockerfile | 16 + apps/mi-processor/package.json | 11 + apps/mi-processor/server.js | 31 + mi-gateway/Dockerfile | 16 - mi-gateway/package.json | 11 - mi-gateway/server.js | 31 - mi-processor/Dockerfile | 16 - mi-processor/package.json | 11 - mi-processor/server.js | 31 - terraform/Makefile | 10 + terraform/ansible/Makefile | 9 + terraform/ansible/all.yml | 35 + terraform/ansible/ansible.cfg | 12 + terraform/ansible/dashboard-adminuser.yaml | 21 + terraform/ansible/group_vars/all/apt-repos.yml | 8 + terraform/ansible/group_vars/all/k3s.yml | 1 + terraform/ansible/group_vars/all/packages.yml | 5 + terraform/ansible/group_vars/all/users.yml | 17 + terraform/ansible/inventory | 9 + terraform/ansible/k3s-refresh-releases | 33 + terraform/ansible/kubernetes-dashboard.yaml | 162 + terraform/ansible/ping.yml | 4 + terraform/ansible/requirements.txt | 1 + .../ansible/roles/apt-repos/defaults/main.yml | 1 + .../ansible/roles/apt-repos/handlers/main.yml | 3 + terraform/ansible/roles/apt-repos/tasks/main.yml | 10 + terraform/ansible/roles/apt-repos/tasks/repo.yml | 28 + terraform/ansible/roles/k3s/defaults/main.yml | 1 + terraform/ansible/roles/k3s/handlers/main.yml | 4 + terraform/ansible/roles/k3s/tasks/main.yml | 39 + .../ansible/roles/k3s/templates/k3s.service.j2 | 21 + terraform/ansible/roles/k3s/vars/k3s_releases.yml | 21 + terraform/ansible/roles/lusers/defaults/main.yml | 1 + terraform/ansible/roles/lusers/tasks/main.yml | 45 + terraform/ansible/roles/packages/defaults/main.yml | 3 + terraform/ansible/roles/packages/handlers/main.yml | 5 + terraform/ansible/roles/packages/tasks/main.yml | 54 + .../roles/superusers/tasks/adjust-group.yml | 21 + terraform/ansible/roles/superusers/tasks/main.yml | 31 + terraform/inventory.tmpl | 9 + terraform/main.tf | 41 + terraform/master.tf | 22 + terraform/node.tf | 25 + terraform/releases.json | 14462 +++++++++++++++++++ terraform/variables.tf | 20 + 48 files changed, 15310 insertions(+), 116 deletions(-) create mode 100644 apps/mi-gateway/Dockerfile create mode 100644 apps/mi-gateway/package.json create mode 100644 apps/mi-gateway/server.js create mode 100644 apps/mi-processor/Dockerfile create mode 100644 apps/mi-processor/package.json create mode 100644 apps/mi-processor/server.js delete mode 100644 mi-gateway/Dockerfile delete mode 100644 mi-gateway/package.json delete mode 100644 mi-gateway/server.js delete mode 100644 mi-processor/Dockerfile delete mode 100644 mi-processor/package.json delete mode 100644 mi-processor/server.js create mode 100644 terraform/Makefile create mode 100644 terraform/ansible/Makefile create mode 100644 terraform/ansible/all.yml create mode 100644 terraform/ansible/ansible.cfg create mode 100644 terraform/ansible/dashboard-adminuser.yaml create mode 100644 terraform/ansible/group_vars/all/apt-repos.yml create mode 100644 terraform/ansible/group_vars/all/k3s.yml create mode 100644 terraform/ansible/group_vars/all/packages.yml create mode 100644 terraform/ansible/group_vars/all/users.yml create mode 100755 terraform/ansible/inventory create mode 100755 terraform/ansible/k3s-refresh-releases create mode 100644 terraform/ansible/kubernetes-dashboard.yaml create mode 100644 terraform/ansible/ping.yml create mode 100644 terraform/ansible/requirements.txt create mode 100644 terraform/ansible/roles/apt-repos/defaults/main.yml create mode 100644 terraform/ansible/roles/apt-repos/handlers/main.yml create mode 100644 terraform/ansible/roles/apt-repos/tasks/main.yml create mode 100644 terraform/ansible/roles/apt-repos/tasks/repo.yml create mode 100644 terraform/ansible/roles/k3s/defaults/main.yml create mode 100644 terraform/ansible/roles/k3s/handlers/main.yml create mode 100644 terraform/ansible/roles/k3s/tasks/main.yml create mode 100644 terraform/ansible/roles/k3s/templates/k3s.service.j2 create mode 100644 terraform/ansible/roles/k3s/vars/k3s_releases.yml create mode 100644 terraform/ansible/roles/lusers/defaults/main.yml create mode 100644 terraform/ansible/roles/lusers/tasks/main.yml create mode 100644 terraform/ansible/roles/packages/defaults/main.yml create mode 100644 terraform/ansible/roles/packages/handlers/main.yml create mode 100644 terraform/ansible/roles/packages/tasks/main.yml create mode 100644 terraform/ansible/roles/superusers/tasks/adjust-group.yml create mode 100644 terraform/ansible/roles/superusers/tasks/main.yml create mode 100644 terraform/inventory.tmpl create mode 100644 terraform/main.tf create mode 100644 terraform/master.tf create mode 100644 terraform/node.tf create mode 100644 terraform/releases.json create mode 100644 terraform/variables.tf diff --git a/apps/mi-gateway/Dockerfile b/apps/mi-gateway/Dockerfile new file mode 100644 index 0000000..dbb042d --- /dev/null +++ b/apps/mi-gateway/Dockerfile @@ -0,0 +1,16 @@ +FROM node:8 + +WORKDIR /opt + +COPY package*.json ./ + +RUN apt update && apt -y full-upgrade +RUN apt install -y postgresql-client +RUN npm install +# If you are building your code for production +# RUN npm ci --only=production + +COPY . . + +EXPOSE 8080 +CMD [ "npm", "start" ] diff --git a/apps/mi-gateway/package.json b/apps/mi-gateway/package.json new file mode 100644 index 0000000..2deee39 --- /dev/null +++ b/apps/mi-gateway/package.json @@ -0,0 +1,11 @@ +{ + "name": "mi-gateway", + "version": "1.0.0", + "main": "server.js", + "scripts": { + "start": "node server.js" + }, + "dependencies": { + "express": "^4.16.1" + } +} diff --git a/apps/mi-gateway/server.js b/apps/mi-gateway/server.js new file mode 100644 index 0000000..4d2546f --- /dev/null +++ b/apps/mi-gateway/server.js @@ -0,0 +1,31 @@ +'use strict'; + +const express = require('express'); + +const PORT = 8080; +const HOST = '0.0.0.0'; + +const app = express(); +app.get('/', (req, res) => { + res.send('mi-gateway 2\n'); +}); + +app.listen(PORT, HOST); +console.log(`Running on http://${HOST}:${PORT}`); + +var keys = []; +for(var key in process.env) { + if (key.startsWith("npm")) { + continue; + } + + keys[keys.length] = key; +} +keys.sort() + +console.log("ENV"); +for (var idx in keys) { + const key = keys[idx]; + const value = process.env[key]; + console.log(" " + key + "=" + value); +} diff --git a/apps/mi-processor/Dockerfile b/apps/mi-processor/Dockerfile new file mode 100644 index 0000000..dbb042d --- /dev/null +++ b/apps/mi-processor/Dockerfile @@ -0,0 +1,16 @@ +FROM node:8 + +WORKDIR /opt + +COPY package*.json ./ + +RUN apt update && apt -y full-upgrade +RUN apt install -y postgresql-client +RUN npm install +# If you are building your code for production +# RUN npm ci --only=production + +COPY . . + +EXPOSE 8080 +CMD [ "npm", "start" ] diff --git a/apps/mi-processor/package.json b/apps/mi-processor/package.json new file mode 100644 index 0000000..2deee39 --- /dev/null +++ b/apps/mi-processor/package.json @@ -0,0 +1,11 @@ +{ + "name": "mi-gateway", + "version": "1.0.0", + "main": "server.js", + "scripts": { + "start": "node server.js" + }, + "dependencies": { + "express": "^4.16.1" + } +} diff --git a/apps/mi-processor/server.js b/apps/mi-processor/server.js new file mode 100644 index 0000000..8b7c9d8 --- /dev/null +++ b/apps/mi-processor/server.js @@ -0,0 +1,31 @@ +'use strict'; + +const express = require('express'); + +const PORT = 8080; +const HOST = '0.0.0.0'; + +const app = express(); +app.get('/', (req, res) => { + res.send('mi-processor\n'); +}); + +app.listen(PORT, HOST); +console.log(`Running on http://${HOST}:${PORT}`); + +var keys = []; +for(var key in process.env) { + if (key.startsWith("npm")) { + continue; + } + + keys[keys.length] = key; +} +keys.sort() + +console.log("ENV"); +for (var idx in keys) { + const key = keys[idx]; + const value = process.env[key]; + console.log(" " + key + "=" + value); +} diff --git a/mi-gateway/Dockerfile b/mi-gateway/Dockerfile deleted file mode 100644 index dbb042d..0000000 --- a/mi-gateway/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM node:8 - -WORKDIR /opt - -COPY package*.json ./ - -RUN apt update && apt -y full-upgrade -RUN apt install -y postgresql-client -RUN npm install -# If you are building your code for production -# RUN npm ci --only=production - -COPY . . - -EXPOSE 8080 -CMD [ "npm", "start" ] diff --git a/mi-gateway/package.json b/mi-gateway/package.json deleted file mode 100644 index 2deee39..0000000 --- a/mi-gateway/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "mi-gateway", - "version": "1.0.0", - "main": "server.js", - "scripts": { - "start": "node server.js" - }, - "dependencies": { - "express": "^4.16.1" - } -} diff --git a/mi-gateway/server.js b/mi-gateway/server.js deleted file mode 100644 index 4d2546f..0000000 --- a/mi-gateway/server.js +++ /dev/null @@ -1,31 +0,0 @@ -'use strict'; - -const express = require('express'); - -const PORT = 8080; -const HOST = '0.0.0.0'; - -const app = express(); -app.get('/', (req, res) => { - res.send('mi-gateway 2\n'); -}); - -app.listen(PORT, HOST); -console.log(`Running on http://${HOST}:${PORT}`); - -var keys = []; -for(var key in process.env) { - if (key.startsWith("npm")) { - continue; - } - - keys[keys.length] = key; -} -keys.sort() - -console.log("ENV"); -for (var idx in keys) { - const key = keys[idx]; - const value = process.env[key]; - console.log(" " + key + "=" + value); -} diff --git a/mi-processor/Dockerfile b/mi-processor/Dockerfile deleted file mode 100644 index dbb042d..0000000 --- a/mi-processor/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM node:8 - -WORKDIR /opt - -COPY package*.json ./ - -RUN apt update && apt -y full-upgrade -RUN apt install -y postgresql-client -RUN npm install -# If you are building your code for production -# RUN npm ci --only=production - -COPY . . - -EXPOSE 8080 -CMD [ "npm", "start" ] diff --git a/mi-processor/package.json b/mi-processor/package.json deleted file mode 100644 index 2deee39..0000000 --- a/mi-processor/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "mi-gateway", - "version": "1.0.0", - "main": "server.js", - "scripts": { - "start": "node server.js" - }, - "dependencies": { - "express": "^4.16.1" - } -} diff --git a/mi-processor/server.js b/mi-processor/server.js deleted file mode 100644 index 8b7c9d8..0000000 --- a/mi-processor/server.js +++ /dev/null @@ -1,31 +0,0 @@ -'use strict'; - -const express = require('express'); - -const PORT = 8080; -const HOST = '0.0.0.0'; - -const app = express(); -app.get('/', (req, res) => { - res.send('mi-processor\n'); -}); - -app.listen(PORT, HOST); -console.log(`Running on http://${HOST}:${PORT}`); - -var keys = []; -for(var key in process.env) { - if (key.startsWith("npm")) { - continue; - } - - keys[keys.length] = key; -} -keys.sort() - -console.log("ENV"); -for (var idx in keys) { - const key = keys[idx]; - const value = process.env[key]; - console.log(" " + key + "=" + value); -} diff --git a/terraform/Makefile b/terraform/Makefile new file mode 100644 index 0000000..dd05c7a --- /dev/null +++ b/terraform/Makefile @@ -0,0 +1,10 @@ +ansiblevault_version=1.1.0 + +ansiblevault_url=https://github.com/MeilleursAgents/terraform-provider-ansiblevault/releases/download/v$(ansiblevault_version)/terraform-provider-ansiblevault_linux-amd64_v$(ansiblevault_version) +ansiblevault_path=.terraform/plugins/linux_amd64/terraform-provider-ansiblevault_v$(ansiblevault_version)_x4 + +all: $(ansiblevault_path) + +$(ansiblevault_path): .terraform/plugins/linux_amd64 + mkdir -p $< + curl -o "$@" $(ansiblevault_url) diff --git a/terraform/ansible/Makefile b/terraform/ansible/Makefile new file mode 100644 index 0000000..99574dc --- /dev/null +++ b/terraform/ansible/Makefile @@ -0,0 +1,9 @@ +all: pip-install + +env: + virtualenv -p python3 env + +pip-install: env/.pip-install.cookie +env/.pip-install.cookie: requirements.txt | env + env/bin/pip install -r $< + @touch "$@" diff --git a/terraform/ansible/all.yml b/terraform/ansible/all.yml new file mode 100644 index 0000000..8ba47b7 --- /dev/null +++ b/terraform/ansible/all.yml @@ -0,0 +1,35 @@ +- hosts: + - all + roles: + - role: packages + tags: packages + become: yes + - role: lusers + tags: lusers + become: yes + - role: superusers + tags: superusers + become: yes + - role: apt-repos + tags: apt-repos + become: yes + +- hosts: + k8s-master + tags: k3s, k8s + roles: + - role: k3s + tags: k3s + become: yes + vars: + k3s_role: master + +- hosts: + k8s-nodes + tags: k3s, k8s + roles: + - role: k3s + tags: k3s + become: yes + vars: + k3s_role: node diff --git a/terraform/ansible/ansible.cfg b/terraform/ansible/ansible.cfg new file mode 100644 index 0000000..c04b015 --- /dev/null +++ b/terraform/ansible/ansible.cfg @@ -0,0 +1,12 @@ +[defaults] +become_method = sudo +inventory = ./inventory +stdout_callback = debug +#vault_password_file = vault-password +retry_files_save_path = .retry + +#https://stackoverflow.com/questions/32297456/how-to-ignore-ansible-ssh-authenticity-checking +host_key_checking = False + +strategy_plugins = env/lib/python3.7/site-packages/ansible_mitogen/plugins/strategy +strategy = mitogen_linear diff --git a/terraform/ansible/dashboard-adminuser.yaml b/terraform/ansible/dashboard-adminuser.yaml new file mode 100644 index 0000000..30e8122 --- /dev/null +++ b/terraform/ansible/dashboard-adminuser.yaml @@ -0,0 +1,21 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: admin-user + namespace: kube-system + + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: admin-user +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: cluster-admin +subjects: +- kind: ServiceAccount + name: admin-user + namespace: kube-system diff --git a/terraform/ansible/group_vars/all/apt-repos.yml b/terraform/ansible/group_vars/all/apt-repos.yml new file mode 100644 index 0000000..4f47512 --- /dev/null +++ b/terraform/ansible/group_vars/all/apt-repos.yml @@ -0,0 +1,8 @@ +apt_repos: + kubernetes: + state: present + url: http://apt.kubernetes.io/ + distro: "kubernetes-{{ ansible_distribution_release }}" + sections: main + key_id: 54A647F9048D5688D7DA2ABE6A030B21BA07F4FB + keyserver: hkp://keyserver.ubuntu.com:80 diff --git a/terraform/ansible/group_vars/all/k3s.yml b/terraform/ansible/group_vars/all/k3s.yml new file mode 100644 index 0000000..2efb8dc --- /dev/null +++ b/terraform/ansible/group_vars/all/k3s.yml @@ -0,0 +1 @@ +k3s_version: 0.7.0 diff --git a/terraform/ansible/group_vars/all/packages.yml b/terraform/ansible/group_vars/all/packages.yml new file mode 100644 index 0000000..9e97fd6 --- /dev/null +++ b/terraform/ansible/group_vars/all/packages.yml @@ -0,0 +1,5 @@ +packages__packages_all: + - git + - etckeeper + +packages_packages: "{{ packages__packages_all }}" diff --git a/terraform/ansible/group_vars/all/users.yml b/terraform/ansible/group_vars/all/users.yml new file mode 100644 index 0000000..6cec1e3 --- /dev/null +++ b/terraform/ansible/group_vars/all/users.yml @@ -0,0 +1,17 @@ +users: + trygvis: + authorized_keys: | + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPX+sVfRvl0+KxsDlbIutyB/Es3exTwNfDVHwi9orwz3 trygvis@birgitte + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJAzB6JB/hZ87M6ozsd7lgKxgOacEOZZRxa4ucs11lqq trygvis@conflatorio + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE/Xrsk69KhaXdHPcbBoCbqlQ2DXmx77OnkLAk22ui5m trygvis@malabaricus + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPKXVnzqo+JTVNrt3p0LGeH59DPMc9WkVMXO3wpAyTH6 trygvis@akili + ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL3UZyrbXX7WMHqcZCRspkoSIfB6egrbOxXPf1zyZkAw trygvis@arius-v4 + + authorized_keys_absent: + - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGpWssvnarp8O/oN86VDlLxUHAYHSKbdhXpe1s0hWkX5 trygvis@fuckaduck + +lusers: + - trygvis + +superusers: + - trygvis diff --git a/terraform/ansible/inventory b/terraform/ansible/inventory new file mode 100755 index 0000000..9c92aff --- /dev/null +++ b/terraform/ansible/inventory @@ -0,0 +1,9 @@ +k8s-master ansible_host=51.158.110.170 +k8s-node0 ansible_host=51.15.201.150 +k8s-node1 ansible_host=163.172.174.68 +k8s-node2 ansible_host=51.158.96.79 + +[k8s-nodes] +k8s-node0 +k8s-node1 +k8s-node2 diff --git a/terraform/ansible/k3s-refresh-releases b/terraform/ansible/k3s-refresh-releases new file mode 100755 index 0000000..ba8f7d6 --- /dev/null +++ b/terraform/ansible/k3s-refresh-releases @@ -0,0 +1,33 @@ +#!/bin/bash + +set -ueo pipefail +set -x + +#curl https://api.github.com/repos/rancher/k3s/releases > releases.json + +#function search { +# file=$1; shift +# checksum=$1; shift +# prog='.[]| {tag_name, assets:(.assets|.[]|{name,url:.browser_download_url} | select(.name==$file or .name==$checksum )) }' +# prog="$prog |[.tag_name,.assets.name,.assets.url]" +# cat releases.json |jq -r --arg file $file --arg checksum $checksum "$prog|@sh" +#} +# +#search k3s sha256sum-amd64.txt | while read file file_url checksum checksum_url + +function dl() { + v=$1; shift + echo " \"$v\":" + curl -s -L https://github.com/rancher/k3s/releases/download/v$v/sha256sum-amd64.txt | while read checksum file + do + url="https://github.com/rancher/k3s/releases/download/v$v/$file" + echo " \"$file\":" + echo " url: \"$url\"" + echo " checksum: \"$checksum\"" + done +} + +releases=ansible/roles/k3s/vars/k3s_releases.yml +echo "k3s__releases:" > $releases +dl 0.6.0 >> $releases +dl 0.7.0 >> $releases diff --git a/terraform/ansible/kubernetes-dashboard.yaml b/terraform/ansible/kubernetes-dashboard.yaml new file mode 100644 index 0000000..ee6977b --- /dev/null +++ b/terraform/ansible/kubernetes-dashboard.yaml @@ -0,0 +1,162 @@ +# Copyright 2017 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# ------------------- Dashboard Secret ------------------- # + +apiVersion: v1 +kind: Secret +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard-certs + namespace: kube-system +type: Opaque + +--- +# ------------------- Dashboard Service Account ------------------- # + +apiVersion: v1 +kind: ServiceAccount +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard + namespace: kube-system + +--- +# ------------------- Dashboard Role & Role Binding ------------------- # + +kind: Role +apiVersion: rbac.authorization.k8s.io/v1 +metadata: + name: kubernetes-dashboard-minimal + namespace: kube-system +rules: + # Allow Dashboard to create 'kubernetes-dashboard-key-holder' secret. +- apiGroups: [""] + resources: ["secrets"] + verbs: ["create"] + # Allow Dashboard to create 'kubernetes-dashboard-settings' config map. +- apiGroups: [""] + resources: ["configmaps"] + verbs: ["create"] + # Allow Dashboard to get, update and delete Dashboard exclusive secrets. +- apiGroups: [""] + resources: ["secrets"] + resourceNames: ["kubernetes-dashboard-key-holder", "kubernetes-dashboard-certs"] + verbs: ["get", "update", "delete"] + # Allow Dashboard to get and update 'kubernetes-dashboard-settings' config map. +- apiGroups: [""] + resources: ["configmaps"] + resourceNames: ["kubernetes-dashboard-settings"] + verbs: ["get", "update"] + # Allow Dashboard to get metrics from heapster. +- apiGroups: [""] + resources: ["services"] + resourceNames: ["heapster"] + verbs: ["proxy"] +- apiGroups: [""] + resources: ["services/proxy"] + resourceNames: ["heapster", "http:heapster:", "https:heapster:"] + verbs: ["get"] + +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: kubernetes-dashboard-minimal + namespace: kube-system +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: kubernetes-dashboard-minimal +subjects: +- kind: ServiceAccount + name: kubernetes-dashboard + namespace: kube-system + +--- +# ------------------- Dashboard Deployment ------------------- # + +kind: Deployment +apiVersion: apps/v1 +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard + namespace: kube-system +spec: + replicas: 1 + revisionHistoryLimit: 10 + selector: + matchLabels: + k8s-app: kubernetes-dashboard + template: + metadata: + labels: + k8s-app: kubernetes-dashboard + spec: + containers: + - name: kubernetes-dashboard + image: k8s.gcr.io/kubernetes-dashboard-amd64:v1.10.1 + ports: + - containerPort: 8443 + protocol: TCP + args: + - --auto-generate-certificates + # Uncomment the following line to manually specify Kubernetes API server Host + # If not specified, Dashboard will attempt to auto discover the API server and connect + # to it. Uncomment only if the default does not work. + # - --apiserver-host=http://my-address:port + volumeMounts: + - name: kubernetes-dashboard-certs + mountPath: /certs + # Create on-disk volume to store exec logs + - mountPath: /tmp + name: tmp-volume + livenessProbe: + httpGet: + scheme: HTTPS + path: / + port: 8443 + initialDelaySeconds: 30 + timeoutSeconds: 30 + volumes: + - name: kubernetes-dashboard-certs + secret: + secretName: kubernetes-dashboard-certs + - name: tmp-volume + emptyDir: {} + serviceAccountName: kubernetes-dashboard + # Comment the following tolerations if Dashboard must not be deployed on master + tolerations: + - key: node-role.kubernetes.io/master + effect: NoSchedule + +--- +# ------------------- Dashboard Service ------------------- # + +kind: Service +apiVersion: v1 +metadata: + labels: + k8s-app: kubernetes-dashboard + name: kubernetes-dashboard + namespace: kube-system +spec: + ports: + - port: 443 + targetPort: 8443 + selector: + k8s-app: kubernetes-dashboard diff --git a/terraform/ansible/ping.yml b/terraform/ansible/ping.yml new file mode 100644 index 0000000..c6ade2b --- /dev/null +++ b/terraform/ansible/ping.yml @@ -0,0 +1,4 @@ +- hosts: + - all + tasks: + - debug: msg=Hello diff --git a/terraform/ansible/requirements.txt b/terraform/ansible/requirements.txt new file mode 100644 index 0000000..5eed6b2 --- /dev/null +++ b/terraform/ansible/requirements.txt @@ -0,0 +1 @@ +mitogen==0.2.3 diff --git a/terraform/ansible/roles/apt-repos/defaults/main.yml b/terraform/ansible/roles/apt-repos/defaults/main.yml new file mode 100644 index 0000000..80975f0 --- /dev/null +++ b/terraform/ansible/roles/apt-repos/defaults/main.yml @@ -0,0 +1 @@ +apt_repos: diff --git a/terraform/ansible/roles/apt-repos/handlers/main.yml b/terraform/ansible/roles/apt-repos/handlers/main.yml new file mode 100644 index 0000000..2401293 --- /dev/null +++ b/terraform/ansible/roles/apt-repos/handlers/main.yml @@ -0,0 +1,3 @@ +- name: apt update + apt: + update_cache: true diff --git a/terraform/ansible/roles/apt-repos/tasks/main.yml b/terraform/ansible/roles/apt-repos/tasks/main.yml new file mode 100644 index 0000000..de51cb3 --- /dev/null +++ b/terraform/ansible/roles/apt-repos/tasks/main.yml @@ -0,0 +1,10 @@ +- apt: + name: + - apt-transport-https + install_recommends: no + +- with_dict: "{{ apt_repos|default('[]') }}" + include_tasks: repo.yml + vars: + state: "{{ item.value.state | default('present') }}" + diff --git a/terraform/ansible/roles/apt-repos/tasks/repo.yml b/terraform/ansible/roles/apt-repos/tasks/repo.yml new file mode 100644 index 0000000..135aeac --- /dev/null +++ b/terraform/ansible/roles/apt-repos/tasks/repo.yml @@ -0,0 +1,28 @@ +- name: "apt-key add {{ item.key }} (key url)" + apt_key: + id: "{{ item.value.key_id }}" + url: "{{ item.value.key_url }}" + state: "{{ state }}" + when: item.value.key_url is defined and item.value.key_id is defined + +- name: "apt-key add {{ item.key }} (keyserver)" + apt_key: + id: "{{ item.value.key_id }}" + keyserver: "{{ item.value.keyserver }}" + state: "{{ state }}" + when: item.value.keyserver is defined and item.value.key_id is defined + +- name: "add repo {{ item.key }}" + when: item.value.url is defined and state == "present" + copy: + dest: "/etc/apt/sources.list.d/{{ item.key }}.list" + content: | + deb {{ item.value.url }} {{ item.value.distro }} {{ item.value.sections }} + notify: apt update + +- name: "remove repo {{ item.key }}" + when: state == "absent" + file: + path: "/etc/apt/sources.list.d/{{ item.key }}.list" + state: absent + notify: apt update diff --git a/terraform/ansible/roles/k3s/defaults/main.yml b/terraform/ansible/roles/k3s/defaults/main.yml new file mode 100644 index 0000000..9731038 --- /dev/null +++ b/terraform/ansible/roles/k3s/defaults/main.yml @@ -0,0 +1 @@ +k3s__version: 0.7.0 diff --git a/terraform/ansible/roles/k3s/handlers/main.yml b/terraform/ansible/roles/k3s/handlers/main.yml new file mode 100644 index 0000000..206b14e --- /dev/null +++ b/terraform/ansible/roles/k3s/handlers/main.yml @@ -0,0 +1,4 @@ +- name: systemctl restart k3s + systemd: + unit: k3s + state: restarted diff --git a/terraform/ansible/roles/k3s/tasks/main.yml b/terraform/ansible/roles/k3s/tasks/main.yml new file mode 100644 index 0000000..0b7797a --- /dev/null +++ b/terraform/ansible/roles/k3s/tasks/main.yml @@ -0,0 +1,39 @@ +- include_vars: + file: k3s_releases.yml + +- get_url: + url: "{{ k3s__releases[k3s_version][item].url }}" + dest: /usr/local/bin/k3s + checksum: "sha256:{{ k3s__releases[k3s_version][item].checksum }}" + mode: ugo=rx + + with_items: + - k3s + notify: systemctl restart k3s + +- template: + src: "k3s.service.j2" + dest: "/etc/systemd/system/k3s.service" + notify: systemctl restart k3s + +- systemd: + unit: k3s + daemon_reload: yes + enabled: yes + +- meta: flush_handlers + +- when: k3s_role == 'master' + block: + - name: Wait for node-token + wait_for: + path: /var/lib/rancher/k3s/server/node-token + + - name: Read node-token from master + slurp: + src: /var/lib/rancher/k3s/server/node-token + register: node_token + + - name: Store Master node-token + set_fact: + node_token: "{{ node_token.content | b64decode | regex_replace('\n', '') }}" diff --git a/terraform/ansible/roles/k3s/templates/k3s.service.j2 b/terraform/ansible/roles/k3s/templates/k3s.service.j2 new file mode 100644 index 0000000..b1c5c54 --- /dev/null +++ b/terraform/ansible/roles/k3s/templates/k3s.service.j2 @@ -0,0 +1,21 @@ +[Unit] +After=network.target + +[Service] +{% if k3s_role == 'master' %} +ExecStartPre=-/sbin/modprobe br_netfilter +ExecStartPre=-/sbin/modprobe overlay +ExecStart=/usr/local/bin/k3s server +{% else %} +# TODO: this should use private_ip +ExecStart=/usr/local/bin/k3s agent --server https://{{ hostvars['k8s-master']['ansible_host'] }}:6443 --token {{ hostvars['k8s-master']['node_token'] }} +{% endif %} +KillMode=process +Delegate=yes +LimitNOFILE=infinity +LimitNPROC=infinity +LimitCORE=infinity +TasksMax=infinity + +[Install] +WantedBy=multi-user.target diff --git a/terraform/ansible/roles/k3s/vars/k3s_releases.yml b/terraform/ansible/roles/k3s/vars/k3s_releases.yml new file mode 100644 index 0000000..52f599d --- /dev/null +++ b/terraform/ansible/roles/k3s/vars/k3s_releases.yml @@ -0,0 +1,21 @@ +k3s__releases: + "0.6.0": + "hyperkube": + url: "https://github.com/rancher/k3s/releases/download/v0.6.0/hyperkube" + checksum: "7bb86be92335ebe5fc653d90b28575b7cb0f036b26a1c468ea7bc9d5eb2c302c" + "k3s": + url: "https://github.com/rancher/k3s/releases/download/v0.6.0/k3s" + checksum: "d1ffefe9fa8de45236c9394b5622c8e67319acda5b70ee8a83496325eeb27359" + "k3s-airgap-images-amd64.tar": + url: "https://github.com/rancher/k3s/releases/download/v0.6.0/k3s-airgap-images-amd64.tar" + checksum: "0ea5c7763d6f58294778ffa2fe4167f76f9cf2be0b6e3d15f9fda177838baa0b" + "0.7.0": + "hyperkube": + url: "https://github.com/rancher/k3s/releases/download/v0.7.0/hyperkube" + checksum: "96a07f3dfc1e53d8e12964936687ab70831ac5a15de49ed1c4126758acbe1e4b" + "k3s": + url: "https://github.com/rancher/k3s/releases/download/v0.7.0/k3s" + checksum: "b838785f81f4a8c7e4564769c4deae391439d6782170f6a03bee742dd39c4d3c" + "k3s-airgap-images-amd64.tar": + url: "https://github.com/rancher/k3s/releases/download/v0.7.0/k3s-airgap-images-amd64.tar" + checksum: "219f3bc8c9747a317362c948efb10b750233fcd751cb793fcb78d5b7b1449008" diff --git a/terraform/ansible/roles/lusers/defaults/main.yml b/terraform/ansible/roles/lusers/defaults/main.yml new file mode 100644 index 0000000..61602c5 --- /dev/null +++ b/terraform/ansible/roles/lusers/defaults/main.yml @@ -0,0 +1 @@ +lusers_authorized_keys_exclusive: no diff --git a/terraform/ansible/roles/lusers/tasks/main.yml b/terraform/ansible/roles/lusers/tasks/main.yml new file mode 100644 index 0000000..cb10845 --- /dev/null +++ b/terraform/ansible/roles/lusers/tasks/main.yml @@ -0,0 +1,45 @@ +--- +- become: yes + tags: lusers + vars: + usernames: "{{ users|dict2items|map(attribute='key')|list }}" + block: + - name: adduser + with_items: "{{ lusers }}" + user: + name: "{{ item }}" + shell: /bin/bash + + - name: getent passwd + getent: + database: passwd + + - name: disable user + with_items: "{{ usernames }}" + when: (item not in lusers) and (item in getent_passwd) + user: + name: "{{ item }}" + shell: /usr/sbin/nologin + + - name: mkdir ~/.ssh + when: lusers_authorized_keys_exclusive + with_items: "{{ lusers }}" + file: + path: "~{{ item }}/.ssh" + state: directory + owner: "{{ item }}" + mode: 0700 + + - name: authorized_keys, exclusively managed by Ansible + copy: + dest: "/home/{{ item }}/.ssh/authorized_keys" + content: "{{ users[item].authorized_keys }}" + when: lusers_authorized_keys_exclusive + with_items: "{{ lusers }}" + + - name: authorized_keys, shared management with Ansible + authorized_key: + user: "{{ item }}" + key: "{{ users[item].authorized_keys }}" + with_items: "{{ lusers }}" + when: not lusers_authorized_keys_exclusive diff --git a/terraform/ansible/roles/packages/defaults/main.yml b/terraform/ansible/roles/packages/defaults/main.yml new file mode 100644 index 0000000..5c17ccd --- /dev/null +++ b/terraform/ansible/roles/packages/defaults/main.yml @@ -0,0 +1,3 @@ +packages__enable_backports: no +packages_packages: +packages__version: "{{ ansible_distribution_release }}" diff --git a/terraform/ansible/roles/packages/handlers/main.yml b/terraform/ansible/roles/packages/handlers/main.yml new file mode 100644 index 0000000..0298ff9 --- /dev/null +++ b/terraform/ansible/roles/packages/handlers/main.yml @@ -0,0 +1,5 @@ +--- +- name: update apt cache + become: yes + apt: + update_cache: yes diff --git a/terraform/ansible/roles/packages/tasks/main.yml b/terraform/ansible/roles/packages/tasks/main.yml new file mode 100644 index 0000000..a6b990a --- /dev/null +++ b/terraform/ansible/roles/packages/tasks/main.yml @@ -0,0 +1,54 @@ +--- +- name: configure debian repositories + notify: update apt cache + copy: + dest: /etc/apt/sources.list + content: "{{ versions[packages__version] }}" + vars: + versions: + stretch: | + deb http://ftp.no.debian.org/debian/ stretch main contrib non-free + deb-src http://ftp.no.debian.org/debian/ stretch main contrib non-free + + deb http://security.debian.org/debian-security stretch/updates main contrib non-free + deb-src http://security.debian.org/debian-security stretch/updates main contrib non-free + + deb http://ftp.no.debian.org/debian/ stretch-updates main contrib non-free + deb-src http://ftp.no.debian.org/debian/ stretch-updates main contrib non-free + + {{ '' if packages__enable_backports else '#' }}deb http://ftp.no.debian.org/debian/ stretch-backports main contrib non-free + {{ '' if packages__enable_backports else '#' }}deb-src http://ftp.no.debian.org/debian/ stretch-backports main contrib non-free + jessie: | + deb http://ftp.no.debian.org/debian/ jessie main contrib non-free + deb-src http://ftp.no.debian.org/debian/ jessie main contrib non-free + + deb http://security.debian.org/debian-security jessie/updates main contrib non-free + deb-src http://security.debian.org/debian-security jessie/updates main contrib non-free + + deb http://ftp.no.debian.org/debian/ jessie-updates main contrib non-free + deb-src http://ftp.no.debian.org/debian/ jessie-updates main contrib non-free + + {{ '' if packages__enable_backports else '#' }}deb http://ftp.no.debian.org/debian/ jessie-backports main contrib non-free + {{ '' if packages__enable_backports else '#' }}deb-src http://ftp.no.debian.org/debian/ jessie-backports main contrib non-free + unstable: | + deb http://ftp.no.debian.org/debian/ unstable main contrib non-free + deb-src http://ftp.no.debian.org/debian/ unstable main contrib non-free + sid: | + deb http://ftp.no.debian.org/debian/ sid main contrib non-free + deb-src http://ftp.no.debian.org/debian/ sid main contrib non-free + +- name: Enable backports repository by default + when: packages__enable_backports + copy: + dest: /etc/apt/preferences.d/bitraf-packages + content: | + Package: * + Pin: release a=stretch-backports + Pin-Priority: 500 + +- meta: flush_handlers + +- name: install debian packages + apt: + name: "{{ packages_packages }}" + install_recommends: no diff --git a/terraform/ansible/roles/superusers/tasks/adjust-group.yml b/terraform/ansible/roles/superusers/tasks/adjust-group.yml new file mode 100644 index 0000000..32666ad --- /dev/null +++ b/terraform/ansible/roles/superusers/tasks/adjust-group.yml @@ -0,0 +1,21 @@ +- vars: + members: "{{ getent_group[group][2].split(',') if group in getent_group else [] }}" + to_add: "{{ usernames | intersect(superusers) | difference(members) }}" + to_remove: "{{ members | difference(superusers) }}" + tags: superusers + block: + - debug: var=group + - debug: var=to_add + - debug: var=to_remove + + - name: gpasswd --add + with_items: "{{ to_add }}" + when: (item|length) > 0 + become: yes + shell: "gpasswd --add {{ item }} {{ group }}" + + - name: gpasswd --delete + with_items: "{{ to_remove }}" + when: (item|length) > 0 + become: yes + shell: "gpasswd --delete {{ item }} {{ group }}" diff --git a/terraform/ansible/roles/superusers/tasks/main.yml b/terraform/ansible/roles/superusers/tasks/main.yml new file mode 100644 index 0000000..70623a0 --- /dev/null +++ b/terraform/ansible/roles/superusers/tasks/main.yml @@ -0,0 +1,31 @@ +--- +- tags: superusers + block: + - name: getent passwd + getent: + database: passwd + + - name: getent group + getent: + database: group + +# NOTE: Accounts are added by the luser module. +- tags: superusers + vars: + usernames: "{{ users|dict2items|map(attribute='key')|list }}" + unix_groups: + - sudo + - systemd-journal + with_items: "{{ unix_groups }}" + loop_control: + loop_var: group + include_tasks: adjust-group.yml + +- name: "Allow 'sudo' group to have passwordless sudo" + tags: superusers + become: yes + lineinfile: + dest: /etc/sudoers + state: present + regexp: '^%sudo' + line: '%sudo ALL=(ALL) NOPASSWD: ALL' diff --git a/terraform/inventory.tmpl b/terraform/inventory.tmpl new file mode 100644 index 0000000..c4b3938 --- /dev/null +++ b/terraform/inventory.tmpl @@ -0,0 +1,9 @@ +k8s-master ansible_host=${master} +%{ for index, ip in nodes ~} +k8s-node${index} ansible_host=${ip} +%{ endfor ~} + +[k8s-nodes] +%{ for index, ip in nodes ~} +k8s-node${index} +%{ endfor ~} diff --git a/terraform/main.tf b/terraform/main.tf new file mode 100644 index 0000000..a71227c --- /dev/null +++ b/terraform/main.tf @@ -0,0 +1,41 @@ +provider "scaleway" { + region = "${var.region}" + version = "1.10" +} + +provider "external" { + version = "1.1.0" +} + +provider "local" { + version = "1.3" +} + +data "scaleway_image" "debian" { + architecture = "${var.arch}" + name = "${var.debian_version}" +} + +resource "scaleway_ssh_key" "trygvis_birgitte" { + key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPX+sVfRvl0+KxsDlbIutyB/Es3exTwNfDVHwi9orwz3 trygvis@birgitte" +} + +resource "scaleway_ssh_key" "trygvis_akili" { + key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPKXVnzqo+JTVNrt3p0LGeH59DPMc9WkVMXO3wpAyTH6 trygvis@akili" +} + +resource "scaleway_ssh_key" "trygvis_conflatorio" { + key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJAzB6JB/hZ87M6ozsd7lgKxgOacEOZZRxa4ucs11lqq trygvis@conflatorio" +} + +resource "scaleway_ssh_key" "trygvis_arius-v4" { + key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL3UZyrbXX7WMHqcZCRspkoSIfB6egrbOxXPf1zyZkAw trygvis@arius-v4" +} + +resource "local_file" "inventory" { + content = templatefile("inventory.tmpl", { + master=scaleway_server.k8s_master.public_ip, + nodes=scaleway_server.k8s_node.*.public_ip + }) + filename = "ansible/inventory" +} diff --git a/terraform/master.tf b/terraform/master.tf new file mode 100644 index 0000000..34e8e43 --- /dev/null +++ b/terraform/master.tf @@ -0,0 +1,22 @@ +resource "scaleway_ip" "k8s_master_ip" { +} + +resource "scaleway_server" "k8s_master" { + name = "k8s_master" + image = "${data.scaleway_image.debian.id}" + type = "${var.k8s_master_server_type}" + public_ip = "${scaleway_ip.k8s_master_ip.ip}" + + tags = ["k8s", "k8s-master"] + + depends_on = [ + scaleway_ssh_key.trygvis_arius-v4, + scaleway_ssh_key.trygvis_birgitte, + scaleway_ssh_key.trygvis_akili, + scaleway_ssh_key.trygvis_conflatorio, + ] +} + +output "k8s_master_ip" { + value = scaleway_server.k8s_master.public_ip +} diff --git a/terraform/node.tf b/terraform/node.tf new file mode 100644 index 0000000..538cada --- /dev/null +++ b/terraform/node.tf @@ -0,0 +1,25 @@ +resource "scaleway_ip" "k8s_node_ips" { + count = "${var.node_count}" +} + +resource "scaleway_server" "k8s_node" { + name = "k8s-node${count.index}" + image = "${data.scaleway_image.debian.id}" + type = "${var.k8s_master_server_type}" + public_ip = "${element(scaleway_ip.k8s_node_ips.*.ip, count.index)}" + + count = "${var.node_count}" + + tags = ["k8s", "k8s-node"] + + depends_on = [ + scaleway_ssh_key.trygvis_arius-v4, + scaleway_ssh_key.trygvis_birgitte, + scaleway_ssh_key.trygvis_akili, + scaleway_ssh_key.trygvis_conflatorio, + ] +} + +output "k8s_node_ips" { + value = scaleway_server.k8s_node.*.public_ip +} diff --git a/terraform/releases.json b/terraform/releases.json new file mode 100644 index 0000000..f2aa62d --- /dev/null +++ b/terraform/releases.json @@ -0,0 +1,14462 @@ +[ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18708267", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18708267/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18708267/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0", + "id": 18708267, + "node_id": "MDc6UmVsZWFzZTE4NzA4MjY3", + "tag_name": "v0.7.0", + "target_commitish": "master", + "name": "Release v0.7.0", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-07-18T13:59:38Z", + "published_at": "2019-07-18T17:13:22Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797810", + "id": 13797810, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3ODEw", + "name": "e2e-passed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 969813, + "download_count": 0, + "created_at": "2019-07-19T13:59:53Z", + "updated_at": "2019-07-19T13:59:54Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/e2e-passed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797811", + "id": 13797811, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3ODEx", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 56310, + "download_count": 1, + "created_at": "2019-07-19T13:59:54Z", + "updated_at": "2019-07-19T13:59:54Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797588", + "id": 13797588, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NTg4", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84031176, + "download_count": 17, + "created_at": "2019-07-19T13:45:29Z", + "updated_at": "2019-07-19T13:45:31Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797600", + "id": 13797600, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NjAw", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79951624, + "download_count": 7, + "created_at": "2019-07-19T13:46:30Z", + "updated_at": "2019-07-19T13:46:32Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797614", + "id": 13797614, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NjE0", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72219172, + "download_count": 2, + "created_at": "2019-07-19T13:47:00Z", + "updated_at": "2019-07-19T13:47:02Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797589", + "id": 13797589, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NTg5", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42151520, + "download_count": 1264, + "created_at": "2019-07-19T13:45:31Z", + "updated_at": "2019-07-19T13:45:32Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797591", + "id": 13797591, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NTkx", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 50, + "created_at": "2019-07-19T13:45:33Z", + "updated_at": "2019-07-19T13:45:37Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797615", + "id": 13797615, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NjE1", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 10, + "created_at": "2019-07-19T13:47:03Z", + "updated_at": "2019-07-19T13:47:09Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797602", + "id": 13797602, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NjAy", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-07-19T13:46:33Z", + "updated_at": "2019-07-19T13:46:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797603", + "id": 13797603, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NjAz", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38899008, + "download_count": 184, + "created_at": "2019-07-19T13:46:38Z", + "updated_at": "2019-07-19T13:46:39Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797616", + "id": 13797616, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NjE2", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38878744, + "download_count": 600, + "created_at": "2019-07-19T13:47:09Z", + "updated_at": "2019-07-19T13:47:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797592", + "id": 13797592, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NTky", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 1145, + "created_at": "2019-07-19T13:45:37Z", + "updated_at": "2019-07-19T13:45:37Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797617", + "id": 13797617, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NjE3", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 758, + "created_at": "2019-07-19T13:47:11Z", + "updated_at": "2019-07-19T13:47:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13797604", + "id": 13797604, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzk3NjA0", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 157, + "created_at": "2019-07-19T13:46:39Z", + "updated_at": "2019-07-19T13:46:40Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0", + "body": "# Release v0.7.0\r\n\r\nK3s v0.7.0 is another big update packed with enhancements and new features. This release brings limited experimental HA support, with more enhancements coming soon. Thanks to the many contributors and everyone in the community for the continued support!\r\n\r\n## Features and Enhancements\r\n- **Update to kubernetes v1.14.4** - Upgraded from Kubernetes v1.14.3 \\[[changelog](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#v1144)\\].\r\n- **Adds `ctr` containerd CLI [#590]** - Includes `ctr` command to k3s binary.\r\n- **Agent now sends systemd notify [#478]** - Agent systemd services can now properly use the notify type.\r\n- **ARM64 compatibility update [#597]** - Cherry-picks an ARM64 compatibility update from upstream code, and updates containerd to v1.2.7.\r\n- **Defaults `--node-ip` from `--flannel-iface` [#450]** - If the desired flannel interface contains a global unicast address default to that value for the node ip.\r\n- **Certs refactor [#452]** - Refactor of certs and flag usage to be more inline with upstream kubernetes shell scripts. Includes changing the kubernetes endpoint address to the node-ip rather than localhost proxy.\r\n- **Initial HA support [#618]** - \r\n\r\n For the initial version of HA k3s must:\r\n - Use etcd3 for a storage backend.\r\n - Have a load balancer setup for the master nodes k8s api (port 6443).\r\n\r\n A new bootstrap flag has been added to retrieve and store k3s cert data in a etcd3 server:\r\n - `--bootstrap none`: No bootstrapping, the default.\r\n - `--bootstrap full`: Read certs data from etcd3 server if present, create new certs if needed, and write to etcd3 server if certs do not exist.\r\n - `--bootstrap read`: Only reads cert data from a etcd3 server, and error if not present.\r\n - `--bootstrap write`: Always create certs if not exists and write cert data to etcd3 server, never read.\r\n\r\n HA aware agents should be configured to connect to the master nodes through the load balancer, agents will then watch the kubernetes endpoints and setup a reverse tunnel to each master node, or disconnect if a node has been removed.\r\n\r\n Future releases will remove the requirement of setting up an external load balancer, and provide HA to non-etcd3 databases (currently MySQL, Postgres, and SQLite).\r\n\r\n## Bug fixes\r\n\r\n- Fixed an issue where the `tls-san` flag may not show domain entries under certain conditions [#469]\r\n- Fixed an issue where an agent may attempt to join a server with a bad password and receive a 403 error, but informative logs were not created and docs did not contain enough information to debug [#467]\r\n- Fixed an issue where some e2e tests would intermittently fail with watch errors [#579]\r\n- Fixed an issue where Knative may have some installation errors [#286]\r\n- Fixed an issue where make would not work with docker buildkit [#504]\r\n- Fixed an issue where `k3s crictl --version` reported crictl version as unknown [#236]\r\n- Fixed an issue where `k3s crictl version` reported containerd version as v1.2.Z+unknown [#159]" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18690278", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18690278/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18690278/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc9", + "id": 18690278, + "node_id": "MDc6UmVsZWFzZTE4NjkwMjc4", + "tag_name": "v0.7.0-rc9", + "target_commitish": "master", + "name": "v0.7.0-rc9", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-07-18T01:39:45Z", + "published_at": "2019-07-18T01:40:32Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768847", + "id": 13768847, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4ODQ3", + "name": "e2e-passed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 941679, + "download_count": 1, + "created_at": "2019-07-18T01:56:57Z", + "updated_at": "2019-07-18T01:56:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/e2e-passed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768848", + "id": 13768848, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4ODQ4", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 57404, + "download_count": 1, + "created_at": "2019-07-18T01:56:57Z", + "updated_at": "2019-07-18T01:56:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768667", + "id": 13768667, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4NjY3", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84031176, + "download_count": 1, + "created_at": "2019-07-18T01:42:36Z", + "updated_at": "2019-07-18T01:42:41Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768677", + "id": 13768677, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njc3", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79951624, + "download_count": 2, + "created_at": "2019-07-18T01:43:21Z", + "updated_at": "2019-07-18T01:43:23Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768682", + "id": 13768682, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njgy", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72219172, + "download_count": 1, + "created_at": "2019-07-18T01:44:02Z", + "updated_at": "2019-07-18T01:44:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768668", + "id": 13768668, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4NjY4", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42151520, + "download_count": 20, + "created_at": "2019-07-18T01:42:42Z", + "updated_at": "2019-07-18T01:42:43Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768669", + "id": 13768669, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4NjY5", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 1, + "created_at": "2019-07-18T01:42:43Z", + "updated_at": "2019-07-18T01:42:49Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768683", + "id": 13768683, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njgz", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 1, + "created_at": "2019-07-18T01:44:05Z", + "updated_at": "2019-07-18T01:44:10Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768678", + "id": 13768678, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njc4", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 4, + "created_at": "2019-07-18T01:43:24Z", + "updated_at": "2019-07-18T01:43:29Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768679", + "id": 13768679, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njc5", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38899008, + "download_count": 5, + "created_at": "2019-07-18T01:43:30Z", + "updated_at": "2019-07-18T01:43:33Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768685", + "id": 13768685, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njg1", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38878744, + "download_count": 3, + "created_at": "2019-07-18T01:44:11Z", + "updated_at": "2019-07-18T01:44:12Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768671", + "id": 13768671, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njcx", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 24, + "created_at": "2019-07-18T01:42:50Z", + "updated_at": "2019-07-18T01:42:50Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768686", + "id": 13768686, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njg2", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 4, + "created_at": "2019-07-18T01:44:12Z", + "updated_at": "2019-07-18T01:44:12Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13768680", + "id": 13768680, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzY4Njgw", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 2, + "created_at": "2019-07-18T01:43:33Z", + "updated_at": "2019-07-18T01:43:34Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc9/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc9", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc9", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18620641", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18620641/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18620641/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc8", + "id": 18620641, + "node_id": "MDc6UmVsZWFzZTE4NjIwNjQx", + "tag_name": "v0.7.0-rc8", + "target_commitish": "master", + "name": "v0.7.0-rc8", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-07-14T08:18:43Z", + "published_at": "2019-07-15T15:34:38Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13721240", + "id": 13721240, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIxMjQw", + "name": "e2e-passed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 935572, + "download_count": 2, + "created_at": "2019-07-15T15:54:04Z", + "updated_at": "2019-07-15T15:54:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/e2e-passed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13721241", + "id": 13721241, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIxMjQx", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 57247, + "download_count": 2, + "created_at": "2019-07-15T15:54:04Z", + "updated_at": "2019-07-15T15:54:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13720960", + "id": 13720960, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIwOTYw", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84031176, + "download_count": 2, + "created_at": "2019-07-15T15:38:46Z", + "updated_at": "2019-07-15T15:38:48Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13720991", + "id": 13720991, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIwOTkx", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79951624, + "download_count": 2, + "created_at": "2019-07-15T15:39:52Z", + "updated_at": "2019-07-15T15:39:54Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13721018", + "id": 13721018, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIxMDE4", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72219172, + "download_count": 2, + "created_at": "2019-07-15T15:40:54Z", + "updated_at": "2019-07-15T15:40:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13720961", + "id": 13720961, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIwOTYx", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42233440, + "download_count": 142, + "created_at": "2019-07-15T15:38:52Z", + "updated_at": "2019-07-15T15:38:53Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13720963", + "id": 13720963, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIwOTYz", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 5, + "created_at": "2019-07-15T15:38:53Z", + "updated_at": "2019-07-15T15:38:56Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13721021", + "id": 13721021, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIxMDIx", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-07-15T15:40:57Z", + "updated_at": "2019-07-15T15:41:03Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13720992", + "id": 13720992, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIwOTky", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 2, + "created_at": "2019-07-15T15:39:54Z", + "updated_at": "2019-07-15T15:39:59Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13720996", + "id": 13720996, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIwOTk2", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38964544, + "download_count": 13, + "created_at": "2019-07-15T15:39:59Z", + "updated_at": "2019-07-15T15:40:00Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13721025", + "id": 13721025, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIxMDI1", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38944280, + "download_count": 32, + "created_at": "2019-07-15T15:41:03Z", + "updated_at": "2019-07-15T15:41:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13720964", + "id": 13720964, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIwOTY0", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 117, + "created_at": "2019-07-15T15:38:57Z", + "updated_at": "2019-07-15T15:38:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13721029", + "id": 13721029, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIxMDI5", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 8, + "created_at": "2019-07-15T15:41:07Z", + "updated_at": "2019-07-15T15:41:08Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13720997", + "id": 13720997, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNzIwOTk3", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 15, + "created_at": "2019-07-15T15:40:01Z", + "updated_at": "2019-07-15T15:40:01Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc8/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc8", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc8", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18586049", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18586049/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18586049/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc7", + "id": 18586049, + "node_id": "MDc6UmVsZWFzZTE4NTg2MDQ5", + "tag_name": "v0.7.0-rc7", + "target_commitish": "master", + "name": "v0.7.0-rc7", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-07-12T18:11:36Z", + "published_at": "2019-07-12T18:13:16Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683989", + "id": 13683989, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzOTg5", + "name": "e2e-passed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 964237, + "download_count": 1, + "created_at": "2019-07-12T18:31:57Z", + "updated_at": "2019-07-12T18:31:58Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/e2e-passed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683991", + "id": 13683991, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzOTkx", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 56533, + "download_count": 1, + "created_at": "2019-07-12T18:31:58Z", + "updated_at": "2019-07-12T18:31:58Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683763", + "id": 13683763, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzYz", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84031176, + "download_count": 3, + "created_at": "2019-07-12T18:15:13Z", + "updated_at": "2019-07-12T18:15:15Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683778", + "id": 13683778, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzc4", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79951624, + "download_count": 1, + "created_at": "2019-07-12T18:16:05Z", + "updated_at": "2019-07-12T18:16:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683789", + "id": 13683789, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzg5", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72219172, + "download_count": 1, + "created_at": "2019-07-12T18:16:42Z", + "updated_at": "2019-07-12T18:16:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683764", + "id": 13683764, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzY0", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42233440, + "download_count": 50, + "created_at": "2019-07-12T18:15:15Z", + "updated_at": "2019-07-12T18:15:16Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683766", + "id": 13683766, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzY2", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 4, + "created_at": "2019-07-12T18:15:16Z", + "updated_at": "2019-07-12T18:15:20Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683790", + "id": 13683790, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzkw", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 1, + "created_at": "2019-07-12T18:16:45Z", + "updated_at": "2019-07-12T18:16:53Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683780", + "id": 13683780, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzgw", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 1, + "created_at": "2019-07-12T18:16:07Z", + "updated_at": "2019-07-12T18:16:13Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683781", + "id": 13683781, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzgx", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38964544, + "download_count": 13, + "created_at": "2019-07-12T18:16:13Z", + "updated_at": "2019-07-12T18:16:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683794", + "id": 13683794, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzk0", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38944280, + "download_count": 40, + "created_at": "2019-07-12T18:16:53Z", + "updated_at": "2019-07-12T18:16:55Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683768", + "id": 13683768, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzY4", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 23, + "created_at": "2019-07-12T18:15:20Z", + "updated_at": "2019-07-12T18:15:20Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683795", + "id": 13683795, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzk1", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 39, + "created_at": "2019-07-12T18:16:55Z", + "updated_at": "2019-07-12T18:16:55Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683782", + "id": 13683782, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNzgy", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 19, + "created_at": "2019-07-12T18:16:14Z", + "updated_at": "2019-07-12T18:16:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc7/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc7", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc7", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18585594", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18585594/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18585594/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc6", + "id": 18585594, + "node_id": "MDc6UmVsZWFzZTE4NTg1NTk0", + "tag_name": "v0.7.0-rc6", + "target_commitish": "master", + "name": "v0.7.0-rc6", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-07-12T17:50:43Z", + "published_at": "2019-07-12T17:51:28Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683687", + "id": 13683687, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNjg3", + "name": "e2e-passed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 899593, + "download_count": 1, + "created_at": "2019-07-12T18:08:13Z", + "updated_at": "2019-07-12T18:08:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/e2e-passed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683688", + "id": 13683688, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNjg4", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 62781, + "download_count": 1, + "created_at": "2019-07-12T18:08:14Z", + "updated_at": "2019-07-12T18:08:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683450", + "id": 13683450, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDUw", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84031176, + "download_count": 1, + "created_at": "2019-07-12T17:53:30Z", + "updated_at": "2019-07-12T17:53:32Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683481", + "id": 13683481, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDgx", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79951624, + "download_count": 1, + "created_at": "2019-07-12T17:54:24Z", + "updated_at": "2019-07-12T17:54:27Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683494", + "id": 13683494, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDk0", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72219172, + "download_count": 1, + "created_at": "2019-07-12T17:54:44Z", + "updated_at": "2019-07-12T17:54:47Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683451", + "id": 13683451, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDUx", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42229344, + "download_count": 20, + "created_at": "2019-07-12T17:53:32Z", + "updated_at": "2019-07-12T17:53:33Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683452", + "id": 13683452, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDUy", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 1, + "created_at": "2019-07-12T17:53:33Z", + "updated_at": "2019-07-12T17:53:39Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683495", + "id": 13683495, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDk1", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 1, + "created_at": "2019-07-12T17:54:47Z", + "updated_at": "2019-07-12T17:54:53Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683483", + "id": 13683483, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDgz", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 1, + "created_at": "2019-07-12T17:54:27Z", + "updated_at": "2019-07-12T17:54:32Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683487", + "id": 13683487, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDg3", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38964544, + "download_count": 1, + "created_at": "2019-07-12T17:54:32Z", + "updated_at": "2019-07-12T17:54:33Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683496", + "id": 13683496, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDk2", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38944280, + "download_count": 1, + "created_at": "2019-07-12T17:54:53Z", + "updated_at": "2019-07-12T17:54:55Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683458", + "id": 13683458, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDU4", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 23, + "created_at": "2019-07-12T17:53:39Z", + "updated_at": "2019-07-12T17:53:40Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683497", + "id": 13683497, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDk3", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 1, + "created_at": "2019-07-12T17:54:55Z", + "updated_at": "2019-07-12T17:54:55Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13683489", + "id": 13683489, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjgzNDg5", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 1, + "created_at": "2019-07-12T17:54:33Z", + "updated_at": "2019-07-12T17:54:34Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc6/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc6", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc6", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18526924", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18526924/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18526924/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc5", + "id": 18526924, + "node_id": "MDc6UmVsZWFzZTE4NTI2OTI0", + "tag_name": "v0.7.0-rc5", + "target_commitish": "master", + "name": "v0.7.0-rc5", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-07-10T04:13:15Z", + "published_at": "2019-07-10T14:48:00Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13641215", + "id": 13641215, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQxMjE1", + "name": "e2e-passed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 959946, + "download_count": 1, + "created_at": "2019-07-10T15:06:56Z", + "updated_at": "2019-07-10T15:06:56Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/e2e-passed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13641216", + "id": 13641216, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQxMjE2", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 60049, + "download_count": 1, + "created_at": "2019-07-10T15:06:56Z", + "updated_at": "2019-07-10T15:06:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640852", + "id": 13640852, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODUy", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84031176, + "download_count": 3, + "created_at": "2019-07-10T14:49:56Z", + "updated_at": "2019-07-10T14:49:58Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640868", + "id": 13640868, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODY4", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79951624, + "download_count": 1, + "created_at": "2019-07-10T14:50:50Z", + "updated_at": "2019-07-10T14:50:52Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640890", + "id": 13640890, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODkw", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72219172, + "download_count": 1, + "created_at": "2019-07-10T14:51:25Z", + "updated_at": "2019-07-10T14:51:28Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640853", + "id": 13640853, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODUz", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42225248, + "download_count": 72, + "created_at": "2019-07-10T14:49:58Z", + "updated_at": "2019-07-10T14:49:59Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640855", + "id": 13640855, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODU1", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 2, + "created_at": "2019-07-10T14:49:59Z", + "updated_at": "2019-07-10T14:50:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640891", + "id": 13640891, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODkx", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 1, + "created_at": "2019-07-10T14:51:28Z", + "updated_at": "2019-07-10T14:51:34Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640869", + "id": 13640869, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODY5", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 1, + "created_at": "2019-07-10T14:50:52Z", + "updated_at": "2019-07-10T14:50:58Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640872", + "id": 13640872, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODcy", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38964544, + "download_count": 50, + "created_at": "2019-07-10T14:50:58Z", + "updated_at": "2019-07-10T14:51:00Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640892", + "id": 13640892, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODky", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38878744, + "download_count": 5, + "created_at": "2019-07-10T14:51:34Z", + "updated_at": "2019-07-10T14:51:36Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640856", + "id": 13640856, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODU2", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 28, + "created_at": "2019-07-10T14:50:04Z", + "updated_at": "2019-07-10T14:50:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640893", + "id": 13640893, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODkz", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 4, + "created_at": "2019-07-10T14:51:36Z", + "updated_at": "2019-07-10T14:51:36Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13640876", + "id": 13640876, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNjQwODc2", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 10, + "created_at": "2019-07-10T14:51:00Z", + "updated_at": "2019-07-10T14:51:00Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc5/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc5", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc5", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18459240", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18459240/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18459240/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc4", + "id": 18459240, + "node_id": "MDc6UmVsZWFzZTE4NDU5MjQw", + "tag_name": "v0.7.0-rc4", + "target_commitish": "master", + "name": "v0.7.0-rc4", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-07-07T21:46:08Z", + "published_at": "2019-07-07T21:58:37Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591457", + "id": 13591457, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxNDU3", + "name": "e2e-passed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 889287, + "download_count": 1, + "created_at": "2019-07-07T22:16:42Z", + "updated_at": "2019-07-07T22:16:42Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/e2e-passed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591458", + "id": 13591458, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxNDU4", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 59100, + "download_count": 1, + "created_at": "2019-07-07T22:16:43Z", + "updated_at": "2019-07-07T22:16:43Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591386", + "id": 13591386, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzg2", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84026992, + "download_count": 1, + "created_at": "2019-07-07T22:01:31Z", + "updated_at": "2019-07-07T22:01:33Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591382", + "id": 13591382, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzgy", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79947440, + "download_count": 1, + "created_at": "2019-07-07T22:01:23Z", + "updated_at": "2019-07-07T22:01:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591393", + "id": 13591393, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzkz", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72214976, + "download_count": 1, + "created_at": "2019-07-07T22:01:53Z", + "updated_at": "2019-07-07T22:01:56Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591387", + "id": 13591387, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzg3", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42208864, + "download_count": 59, + "created_at": "2019-07-07T22:01:33Z", + "updated_at": "2019-07-07T22:01:34Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591388", + "id": 13591388, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzg4", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 3, + "created_at": "2019-07-07T22:01:34Z", + "updated_at": "2019-07-07T22:01:37Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591395", + "id": 13591395, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzk1", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 1, + "created_at": "2019-07-07T22:01:56Z", + "updated_at": "2019-07-07T22:02:02Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591383", + "id": 13591383, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzgz", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 1, + "created_at": "2019-07-07T22:01:25Z", + "updated_at": "2019-07-07T22:01:29Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591384", + "id": 13591384, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzg0", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38964544, + "download_count": 5, + "created_at": "2019-07-07T22:01:29Z", + "updated_at": "2019-07-07T22:01:30Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591396", + "id": 13591396, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzk2", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38878744, + "download_count": 5, + "created_at": "2019-07-07T22:02:02Z", + "updated_at": "2019-07-07T22:02:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591390", + "id": 13591390, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzkw", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 26, + "created_at": "2019-07-07T22:01:37Z", + "updated_at": "2019-07-07T22:01:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591397", + "id": 13591397, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzk3", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 2, + "created_at": "2019-07-07T22:02:04Z", + "updated_at": "2019-07-07T22:02:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13591385", + "id": 13591385, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTkxMzg1", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 1, + "created_at": "2019-07-07T22:01:30Z", + "updated_at": "2019-07-07T22:01:30Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc4/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc4", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc4", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18400508", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18400508/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18400508/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc3", + "id": 18400508, + "node_id": "MDc6UmVsZWFzZTE4NDAwNTA4", + "tag_name": "v0.7.0-rc3", + "target_commitish": "master", + "name": "v0.7.0-rc3", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-07-03T22:10:12Z", + "published_at": "2019-07-03T22:18:54Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540638", + "id": 13540638, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjM4", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84026992, + "download_count": 1, + "created_at": "2019-07-03T22:21:37Z", + "updated_at": "2019-07-03T22:21:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540641", + "id": 13540641, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQx", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79947440, + "download_count": 1, + "created_at": "2019-07-03T22:21:40Z", + "updated_at": "2019-07-03T22:21:42Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540647", + "id": 13540647, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQ3", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72214976, + "download_count": 2, + "created_at": "2019-07-03T22:22:16Z", + "updated_at": "2019-07-03T22:22:18Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540639", + "id": 13540639, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjM5", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42208864, + "download_count": 50, + "created_at": "2019-07-03T22:21:39Z", + "updated_at": "2019-07-03T22:21:40Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540640", + "id": 13540640, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQw", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 3, + "created_at": "2019-07-03T22:21:40Z", + "updated_at": "2019-07-03T22:21:44Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540648", + "id": 13540648, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQ4", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 1, + "created_at": "2019-07-03T22:22:18Z", + "updated_at": "2019-07-03T22:22:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540642", + "id": 13540642, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQy", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 2, + "created_at": "2019-07-03T22:21:42Z", + "updated_at": "2019-07-03T22:21:49Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540644", + "id": 13540644, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQ0", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38964544, + "download_count": 28, + "created_at": "2019-07-03T22:21:49Z", + "updated_at": "2019-07-03T22:21:51Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540649", + "id": 13540649, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQ5", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38878744, + "download_count": 89, + "created_at": "2019-07-03T22:22:25Z", + "updated_at": "2019-07-03T22:22:27Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540643", + "id": 13540643, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQz", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 52, + "created_at": "2019-07-03T22:21:44Z", + "updated_at": "2019-07-03T22:21:44Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540650", + "id": 13540650, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjUw", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 10, + "created_at": "2019-07-03T22:22:27Z", + "updated_at": "2019-07-03T22:22:27Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13540645", + "id": 13540645, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNTQwNjQ1", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 23, + "created_at": "2019-07-03T22:21:51Z", + "updated_at": "2019-07-03T22:21:51Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc3/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc3", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc3", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18318490", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18318490/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18318490/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc2", + "id": 18318490, + "node_id": "MDc6UmVsZWFzZTE4MzE4NDkw", + "tag_name": "v0.7.0-rc2", + "target_commitish": "master", + "name": "v0.7.0-rc2", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-06-30T20:06:00Z", + "published_at": "2019-06-30T20:28:24Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483168", + "id": 13483168, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMTY4", + "name": "e2e-passed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 927667, + "download_count": 5, + "created_at": "2019-06-30T20:46:48Z", + "updated_at": "2019-06-30T20:46:48Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/e2e-passed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483066", + "id": 13483066, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDY2", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84026992, + "download_count": 4, + "created_at": "2019-06-30T20:30:51Z", + "updated_at": "2019-06-30T20:30:52Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483070", + "id": 13483070, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDcw", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79947440, + "download_count": 3, + "created_at": "2019-06-30T20:31:05Z", + "updated_at": "2019-06-30T20:31:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483080", + "id": 13483080, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDgw", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72214976, + "download_count": 3, + "created_at": "2019-06-30T20:31:42Z", + "updated_at": "2019-06-30T20:31:48Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483067", + "id": 13483067, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDY3", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 42204768, + "download_count": 54, + "created_at": "2019-06-30T20:30:52Z", + "updated_at": "2019-06-30T20:30:53Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483068", + "id": 13483068, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDY4", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 18, + "created_at": "2019-06-30T20:30:53Z", + "updated_at": "2019-06-30T20:30:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483082", + "id": 13483082, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDgy", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 5, + "created_at": "2019-06-30T20:31:48Z", + "updated_at": "2019-06-30T20:31:53Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483071", + "id": 13483071, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDcx", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 4, + "created_at": "2019-06-30T20:31:08Z", + "updated_at": "2019-06-30T20:31:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483072", + "id": 13483072, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDcy", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38964544, + "download_count": 18, + "created_at": "2019-06-30T20:31:11Z", + "updated_at": "2019-06-30T20:31:12Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483083", + "id": 13483083, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDgz", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38878744, + "download_count": 5, + "created_at": "2019-06-30T20:31:53Z", + "updated_at": "2019-06-30T20:31:55Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483069", + "id": 13483069, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDY5", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 171, + "created_at": "2019-06-30T20:30:57Z", + "updated_at": "2019-06-30T20:30:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483084", + "id": 13483084, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDg0", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 2, + "created_at": "2019-06-30T20:31:55Z", + "updated_at": "2019-06-30T20:31:55Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13483073", + "id": 13483073, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDgzMDcz", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 6, + "created_at": "2019-06-30T20:31:12Z", + "updated_at": "2019-06-30T20:31:13Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc2/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc2", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc2", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18249954", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18249954/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18249954/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.7.0-rc1", + "id": 18249954, + "node_id": "MDc6UmVsZWFzZTE4MjQ5OTU0", + "tag_name": "v0.7.0-rc1", + "target_commitish": "master", + "name": "v0.7.0-rc1", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-06-26T20:51:03Z", + "published_at": "2019-06-26T21:02:10Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418297", + "id": 13418297, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4Mjk3", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 978274, + "download_count": 4, + "created_at": "2019-06-26T21:21:06Z", + "updated_at": "2019-06-26T21:21:06Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418298", + "id": 13418298, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4Mjk4", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 59856, + "download_count": 3, + "created_at": "2019-06-26T21:21:06Z", + "updated_at": "2019-06-26T21:21:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418036", + "id": 13418036, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDM2", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84026992, + "download_count": 3, + "created_at": "2019-06-26T21:04:45Z", + "updated_at": "2019-06-26T21:04:47Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418046", + "id": 13418046, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDQ2", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79947440, + "download_count": 3, + "created_at": "2019-06-26T21:05:12Z", + "updated_at": "2019-06-26T21:05:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418052", + "id": 13418052, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDUy", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72215004, + "download_count": 3, + "created_at": "2019-06-26T21:05:26Z", + "updated_at": "2019-06-26T21:05:29Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418037", + "id": 13418037, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDM3", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41885280, + "download_count": 46, + "created_at": "2019-06-26T21:04:48Z", + "updated_at": "2019-06-26T21:04:49Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418038", + "id": 13418038, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDM4", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 5, + "created_at": "2019-06-26T21:04:49Z", + "updated_at": "2019-06-26T21:04:52Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418053", + "id": 13418053, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDUz", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 5, + "created_at": "2019-06-26T21:05:29Z", + "updated_at": "2019-06-26T21:05:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418048", + "id": 13418048, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDQ4", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-06-26T21:05:14Z", + "updated_at": "2019-06-26T21:05:19Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418049", + "id": 13418049, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDQ5", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38702400, + "download_count": 23, + "created_at": "2019-06-26T21:05:19Z", + "updated_at": "2019-06-26T21:05:20Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418054", + "id": 13418054, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDU0", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38616600, + "download_count": 41, + "created_at": "2019-06-26T21:05:35Z", + "updated_at": "2019-06-26T21:05:36Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418039", + "id": 13418039, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDM5", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 9, + "created_at": "2019-06-26T21:04:53Z", + "updated_at": "2019-06-26T21:04:53Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418055", + "id": 13418055, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDU1", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 5, + "created_at": "2019-06-26T21:05:36Z", + "updated_at": "2019-06-26T21:05:37Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13418050", + "id": 13418050, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzNDE4MDUw", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 19, + "created_at": "2019-06-26T21:05:20Z", + "updated_at": "2019-06-26T21:05:21Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.7.0-rc1/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.7.0-rc1", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.7.0-rc1", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18105325", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18105325/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18105325/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.6.1", + "id": 18105325, + "node_id": "MDc6UmVsZWFzZTE4MTA1MzI1", + "tag_name": "v0.6.1", + "target_commitish": "master", + "name": "Release v0.6.1", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-06-19T21:36:25Z", + "published_at": "2019-06-19T22:08:44Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13298002", + "id": 13298002, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk4MDAy", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1055743, + "download_count": 25, + "created_at": "2019-06-19T22:28:05Z", + "updated_at": "2019-06-19T22:28:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297774", + "id": 13297774, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzc0", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84026992, + "download_count": 112, + "created_at": "2019-06-19T22:10:48Z", + "updated_at": "2019-06-19T22:10:50Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297794", + "id": 13297794, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzk0", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79947440, + "download_count": 48, + "created_at": "2019-06-19T22:11:39Z", + "updated_at": "2019-06-19T22:11:42Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297799", + "id": 13297799, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzk5", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72214976, + "download_count": 29, + "created_at": "2019-06-19T22:11:59Z", + "updated_at": "2019-06-19T22:12:02Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297777", + "id": 13297777, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzc3", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41868896, + "download_count": 11731, + "created_at": "2019-06-19T22:10:50Z", + "updated_at": "2019-06-19T22:10:51Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297778", + "id": 13297778, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzc4", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 467, + "created_at": "2019-06-19T22:10:51Z", + "updated_at": "2019-06-19T22:10:55Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297803", + "id": 13297803, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3ODAz", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 86, + "created_at": "2019-06-19T22:12:02Z", + "updated_at": "2019-06-19T22:12:10Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297795", + "id": 13297795, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzk1", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 85, + "created_at": "2019-06-19T22:11:42Z", + "updated_at": "2019-06-19T22:11:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297797", + "id": 13297797, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzk3", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636864, + "download_count": 1257, + "created_at": "2019-06-19T22:11:46Z", + "updated_at": "2019-06-19T22:11:47Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297804", + "id": 13297804, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3ODA0", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38616600, + "download_count": 3246, + "created_at": "2019-06-19T22:12:10Z", + "updated_at": "2019-06-19T22:12:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297779", + "id": 13297779, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzc5", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 9026, + "created_at": "2019-06-19T22:10:56Z", + "updated_at": "2019-06-19T22:10:56Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297805", + "id": 13297805, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3ODA1", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 2819, + "created_at": "2019-06-19T22:12:14Z", + "updated_at": "2019-06-19T22:12:15Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13297798", + "id": 13297798, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjk3Nzk4", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 1532, + "created_at": "2019-06-19T22:11:47Z", + "updated_at": "2019-06-19T22:11:48Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.1/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.6.1", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.6.1", + "body": "# Release v0.6.1\r\n\r\nK3s v0.6.1 fixes a regression issue where configMaps are not created for HelmChart valuesContent [#551]\r\n\r\n## Migrating from k3s v0.5.0 or earlier\r\n\r\nPreviously HelmCharts used an `apiVersion` of `k3s.cattle.io/v1`, any custom HelmCharts should be updated to use `apiVersion: helm.cattle.io/v1`." + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/18007047", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/18007047/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/18007047/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.6.0", + "id": 18007047, + "node_id": "MDc6UmVsZWFzZTE4MDA3MDQ3", + "tag_name": "v0.6.0", + "target_commitish": "09b06343bf421bf267de7202248dd08e978a3010", + "name": "Release v0.6.0", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-06-18T23:17:08Z", + "published_at": "2019-06-19T00:49:00Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291860", + "id": 13291860, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxODYw", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1005094, + "download_count": 5, + "created_at": "2019-06-19T16:38:41Z", + "updated_at": "2019-06-19T16:38:41Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291861", + "id": 13291861, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxODYx", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 60312, + "download_count": 3, + "created_at": "2019-06-19T16:38:41Z", + "updated_at": "2019-06-19T16:38:41Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291579", + "id": 13291579, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNTc5", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84026992, + "download_count": 5, + "created_at": "2019-06-19T16:23:05Z", + "updated_at": "2019-06-19T16:23:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291606", + "id": 13291606, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNjA2", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79947440, + "download_count": 4, + "created_at": "2019-06-19T16:23:41Z", + "updated_at": "2019-06-19T16:23:43Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291623", + "id": 13291623, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNjIz", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72214976, + "download_count": 5, + "created_at": "2019-06-19T16:24:19Z", + "updated_at": "2019-06-19T16:24:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291582", + "id": 13291582, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNTgy", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41868896, + "download_count": 183, + "created_at": "2019-06-19T16:23:07Z", + "updated_at": "2019-06-19T16:23:08Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291583", + "id": 13291583, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNTgz", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 12, + "created_at": "2019-06-19T16:23:08Z", + "updated_at": "2019-06-19T16:23:12Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291625", + "id": 13291625, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNjI1", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 4, + "created_at": "2019-06-19T16:24:25Z", + "updated_at": "2019-06-19T16:24:31Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291609", + "id": 13291609, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNjA5", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 5, + "created_at": "2019-06-19T16:23:44Z", + "updated_at": "2019-06-19T16:23:49Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291616", + "id": 13291616, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNjE2", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636864, + "download_count": 24, + "created_at": "2019-06-19T16:23:49Z", + "updated_at": "2019-06-19T16:23:50Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291627", + "id": 13291627, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNjI3", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38616600, + "download_count": 34, + "created_at": "2019-06-19T16:24:31Z", + "updated_at": "2019-06-19T16:24:33Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291585", + "id": 13291585, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNTg1", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 123, + "created_at": "2019-06-19T16:23:12Z", + "updated_at": "2019-06-19T16:23:12Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291628", + "id": 13291628, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNjI4", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 19, + "created_at": "2019-06-19T16:24:34Z", + "updated_at": "2019-06-19T16:24:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13291617", + "id": 13291617, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMjkxNjE3", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 21, + "created_at": "2019-06-19T16:23:51Z", + "updated_at": "2019-06-19T16:23:51Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.6.0", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.6.0", + "body": "# Release v0.6.0\r\n\r\nK3s v0.6.0 provides important bug fixes and enhancements from our community and developers. This release brings external database and node label/taint functionality, as configuration and usability improvements remain the focus of k3s. Thanks to everyone in the community for the continued support and contributions!\r\n\r\n## Features and Enhancements\r\n\r\n- **Default k3s.yaml to readable only by the user [#389]** - Changes default k3s.yaml permissions from 0644 to 0600.\r\n- **Add a check that the server time is set for SSL verification [#411]** - Produce an error message unless the date is after 01/01/1980.\r\n- **Add node roles, `--node-label` and `--node-taint` flags [#379, #394]** - Adds master or worker role to a node, and provides flags to add a set of Labels or Taints to kubelet.\r\n- **Always restart k3s in systemd [#420]** - Adds `restart=always` to k3s service files.\r\n- **Add external database support [#453]** - Adds capability for using a MySQL or Postgres database with TLS cert/keys support.\r\n- **Expose Traefik LoadBalancer IP on Ingresses [#534]** - Configures Traefik to update the Ingress Resources loadBalancer status.\r\n- **Update to kubernetes v1.14.3** - Upgraded from Kubernetes v1.14.1 \\[[changelog](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#v1143)\\].\r\n\r\n## Known Issues\r\n- **valuesContent in helm resources fail [#551]**\r\n\r\n## Bug fixes\r\n\r\n- Fixed an issue where k3s may not be configured correctly if br_netfilter is a built-in kernel module [#465]\r\n- Fixed an issue where k3s kubectl can not find k3s.yaml in a custom install location [#378]\r\n- Fixed an issue where rootless k3s does not work if /var/lib/cni is missing [#470]\r\n- Fixed an issue where `watch chan error: EOF` appears frequently in the logs [#463]\r\n- Fixed an issue where special characters were not escaped by the installer [#512]\r\n- Fixed an issue where service IPs were updating even tho `no-deploy=servicelb` was set [#542]" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17955702", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17955702/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17955702/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.6.0-rc5", + "id": 17955702, + "node_id": "MDc6UmVsZWFzZTE3OTU1NzAy", + "tag_name": "v0.6.0-rc5", + "target_commitish": "master", + "name": "v0.6.0-rc5", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-06-12T21:21:42Z", + "published_at": "2019-06-12T21:41:12Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167999", + "id": 13167999, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3OTk5", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1002166, + "download_count": 5, + "created_at": "2019-06-12T22:01:40Z", + "updated_at": "2019-06-12T22:01:40Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13168000", + "id": 13168000, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY4MDAw", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 57691, + "download_count": 4, + "created_at": "2019-06-12T22:01:40Z", + "updated_at": "2019-06-12T22:01:40Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167707", + "id": 13167707, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzA3", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84018800, + "download_count": 4, + "created_at": "2019-06-12T21:43:38Z", + "updated_at": "2019-06-12T21:43:40Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167712", + "id": 13167712, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzEy", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79939248, + "download_count": 3, + "created_at": "2019-06-12T21:43:58Z", + "updated_at": "2019-06-12T21:44:01Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167719", + "id": 13167719, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzE5", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72206784, + "download_count": 3, + "created_at": "2019-06-12T21:44:52Z", + "updated_at": "2019-06-12T21:44:55Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167708", + "id": 13167708, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzA4", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41856608, + "download_count": 149, + "created_at": "2019-06-12T21:43:40Z", + "updated_at": "2019-06-12T21:43:42Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167709", + "id": 13167709, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzA5", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 8, + "created_at": "2019-06-12T21:43:42Z", + "updated_at": "2019-06-12T21:43:48Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167721", + "id": 13167721, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzIx", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-06-12T21:44:55Z", + "updated_at": "2019-06-12T21:45:01Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167713", + "id": 13167713, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzEz", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 5, + "created_at": "2019-06-12T21:44:01Z", + "updated_at": "2019-06-12T21:44:06Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167714", + "id": 13167714, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzE0", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636864, + "download_count": 6, + "created_at": "2019-06-12T21:44:06Z", + "updated_at": "2019-06-12T21:44:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167722", + "id": 13167722, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzIy", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38616600, + "download_count": 18, + "created_at": "2019-06-12T21:45:01Z", + "updated_at": "2019-06-12T21:45:03Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167710", + "id": 13167710, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzEw", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 59, + "created_at": "2019-06-12T21:43:49Z", + "updated_at": "2019-06-12T21:43:49Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167723", + "id": 13167723, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzIz", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 22, + "created_at": "2019-06-12T21:45:04Z", + "updated_at": "2019-06-12T21:45:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167715", + "id": 13167715, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NzE1", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 4, + "created_at": "2019-06-12T21:44:07Z", + "updated_at": "2019-06-12T21:44:08Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc5/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.6.0-rc5", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.6.0-rc5", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17955324", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17955324/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17955324/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.6.0-rc4", + "id": 17955324, + "node_id": "MDc6UmVsZWFzZTE3OTU1MzI0", + "tag_name": "v0.6.0-rc4", + "target_commitish": "master", + "name": "v0.6.0-rc4", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-06-11T22:54:01Z", + "published_at": "2019-06-12T21:20:18Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167682", + "id": 13167682, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3Njgy", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1116847, + "download_count": 4, + "created_at": "2019-06-12T21:40:28Z", + "updated_at": "2019-06-12T21:40:28Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167683", + "id": 13167683, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3Njgz", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 62559, + "download_count": 3, + "created_at": "2019-06-12T21:40:28Z", + "updated_at": "2019-06-12T21:40:28Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167505", + "id": 13167505, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NTA1", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 84002416, + "download_count": 3, + "created_at": "2019-06-12T21:24:02Z", + "updated_at": "2019-06-12T21:24:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167484", + "id": 13167484, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NDg0", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79926960, + "download_count": 3, + "created_at": "2019-06-12T21:23:08Z", + "updated_at": "2019-06-12T21:23:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167495", + "id": 13167495, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NDk1", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72194496, + "download_count": 3, + "created_at": "2019-06-12T21:23:38Z", + "updated_at": "2019-06-12T21:23:41Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167507", + "id": 13167507, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NTA3", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41852512, + "download_count": 5, + "created_at": "2019-06-12T21:24:04Z", + "updated_at": "2019-06-12T21:24:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167511", + "id": 13167511, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NTEx", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 3, + "created_at": "2019-06-12T21:24:05Z", + "updated_at": "2019-06-12T21:24:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167496", + "id": 13167496, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NDk2", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-06-12T21:23:41Z", + "updated_at": "2019-06-12T21:24:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167486", + "id": 13167486, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NDg2", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-06-12T21:23:11Z", + "updated_at": "2019-06-12T21:23:16Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167489", + "id": 13167489, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NDg5", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636864, + "download_count": 3, + "created_at": "2019-06-12T21:23:16Z", + "updated_at": "2019-06-12T21:23:17Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167510", + "id": 13167510, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NTEw", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38551064, + "download_count": 3, + "created_at": "2019-06-12T21:24:05Z", + "updated_at": "2019-06-12T21:24:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167514", + "id": 13167514, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NTE0", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 3, + "created_at": "2019-06-12T21:24:14Z", + "updated_at": "2019-06-12T21:24:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167513", + "id": 13167513, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NTEz", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 1, + "created_at": "2019-06-12T21:24:08Z", + "updated_at": "2019-06-12T21:24:08Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/13167490", + "id": 13167490, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEzMTY3NDkw", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 1, + "created_at": "2019-06-12T21:23:17Z", + "updated_at": "2019-06-12T21:23:17Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc4/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.6.0-rc4", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.6.0-rc4", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17643328", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17643328/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17643328/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.6.0-rc3", + "id": 17643328, + "node_id": "MDc6UmVsZWFzZTE3NjQzMzI4", + "tag_name": "v0.6.0-rc3", + "target_commitish": "master", + "name": "v0.6.0-rc3", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-05-29T00:28:03Z", + "published_at": "2019-05-29T00:53:43Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916939", + "id": 12916939, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2OTM5", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1008141, + "download_count": 10, + "created_at": "2019-05-29T01:12:17Z", + "updated_at": "2019-05-29T01:12:17Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916940", + "id": 12916940, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2OTQw", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 57514, + "download_count": 5, + "created_at": "2019-05-29T01:12:17Z", + "updated_at": "2019-05-29T01:12:18Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916773", + "id": 12916773, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzcz", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83998320, + "download_count": 10, + "created_at": "2019-05-29T00:55:43Z", + "updated_at": "2019-05-29T00:55:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916780", + "id": 12916780, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzgw", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79922864, + "download_count": 9, + "created_at": "2019-05-29T00:56:22Z", + "updated_at": "2019-05-29T00:56:24Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916788", + "id": 12916788, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzg4", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 72190400, + "download_count": 5, + "created_at": "2019-05-29T00:56:58Z", + "updated_at": "2019-05-29T00:57:01Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916774", + "id": 12916774, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzc0", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41852512, + "download_count": 298, + "created_at": "2019-05-29T00:55:45Z", + "updated_at": "2019-05-29T00:55:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916775", + "id": 12916775, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzc1", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 15, + "created_at": "2019-05-29T00:55:46Z", + "updated_at": "2019-05-29T00:55:50Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916791", + "id": 12916791, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzkx", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-05-29T00:57:01Z", + "updated_at": "2019-05-29T00:57:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916781", + "id": 12916781, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzgx", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 4, + "created_at": "2019-05-29T00:56:24Z", + "updated_at": "2019-05-29T00:56:30Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916782", + "id": 12916782, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzgy", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636864, + "download_count": 57, + "created_at": "2019-05-29T00:56:30Z", + "updated_at": "2019-05-29T00:56:31Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916793", + "id": 12916793, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzkz", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38551064, + "download_count": 52, + "created_at": "2019-05-29T00:57:07Z", + "updated_at": "2019-05-29T00:57:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916777", + "id": 12916777, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzc3", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 112, + "created_at": "2019-05-29T00:55:50Z", + "updated_at": "2019-05-29T00:55:51Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916794", + "id": 12916794, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzk0", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 24, + "created_at": "2019-05-29T00:57:11Z", + "updated_at": "2019-05-29T00:57:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12916783", + "id": 12916783, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyOTE2Nzgz", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 34, + "created_at": "2019-05-29T00:56:32Z", + "updated_at": "2019-05-29T00:56:32Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc3/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.6.0-rc3", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.6.0-rc3", + "body": "v0.6.0-rc3" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17614558", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17614558/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17614558/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.6.0-rc2", + "id": 17614558, + "node_id": "MDc6UmVsZWFzZTE3NjE0NTU4", + "tag_name": "v0.6.0-rc2", + "target_commitish": "master", + "name": "v0.6.0-rc2", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-05-27T20:38:13Z", + "published_at": "2019-05-27T20:38:59Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894341", + "id": 12894341, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MzQx", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1025934, + "download_count": 5, + "created_at": "2019-05-27T20:58:20Z", + "updated_at": "2019-05-27T20:58:21Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894342", + "id": 12894342, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MzQy", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 62847, + "download_count": 4, + "created_at": "2019-05-27T20:58:21Z", + "updated_at": "2019-05-27T20:58:21Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894064", + "id": 12894064, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDY0", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 5, + "created_at": "2019-05-27T20:41:04Z", + "updated_at": "2019-05-27T20:41:06Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894085", + "id": 12894085, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDg1", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 3, + "created_at": "2019-05-27T20:41:49Z", + "updated_at": "2019-05-27T20:41:51Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894091", + "id": 12894091, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDkx", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 3, + "created_at": "2019-05-27T20:42:22Z", + "updated_at": "2019-05-27T20:42:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894065", + "id": 12894065, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDY1", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41631328, + "download_count": 39, + "created_at": "2019-05-27T20:41:06Z", + "updated_at": "2019-05-27T20:41:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894067", + "id": 12894067, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDY3", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 6, + "created_at": "2019-05-27T20:41:07Z", + "updated_at": "2019-05-27T20:41:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894092", + "id": 12894092, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDky", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-05-27T20:42:25Z", + "updated_at": "2019-05-27T20:42:31Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894086", + "id": 12894086, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDg2", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-05-27T20:41:51Z", + "updated_at": "2019-05-27T20:41:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894087", + "id": 12894087, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDg3", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38440256, + "download_count": 22, + "created_at": "2019-05-27T20:41:57Z", + "updated_at": "2019-05-27T20:41:59Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894094", + "id": 12894094, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDk0", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38354456, + "download_count": 3, + "created_at": "2019-05-27T20:42:31Z", + "updated_at": "2019-05-27T20:42:33Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894074", + "id": 12894074, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDc0", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 21, + "created_at": "2019-05-27T20:41:11Z", + "updated_at": "2019-05-27T20:41:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894095", + "id": 12894095, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDk1", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 1, + "created_at": "2019-05-27T20:42:33Z", + "updated_at": "2019-05-27T20:42:33Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12894088", + "id": 12894088, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODk0MDg4", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 14, + "created_at": "2019-05-27T20:41:59Z", + "updated_at": "2019-05-27T20:41:59Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc2/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.6.0-rc2", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.6.0-rc2", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17614260", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17614260/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17614260/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.6.0-rc1", + "id": 17614260, + "node_id": "MDc6UmVsZWFzZTE3NjE0MjYw", + "tag_name": "v0.6.0-rc1", + "target_commitish": "master", + "name": "v0.6.0-rc1", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-05-24T22:47:38Z", + "published_at": "2019-05-27T20:13:09Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893992", + "id": 12893992, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzOTky", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1101032, + "download_count": 5, + "created_at": "2019-05-27T20:32:54Z", + "updated_at": "2019-05-27T20:32:54Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893993", + "id": 12893993, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzOTkz", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 55313, + "download_count": 4, + "created_at": "2019-05-27T20:32:54Z", + "updated_at": "2019-05-27T20:32:54Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893832", + "id": 12893832, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODMy", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 3, + "created_at": "2019-05-27T20:15:00Z", + "updated_at": "2019-05-27T20:15:02Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893847", + "id": 12893847, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODQ3", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 3, + "created_at": "2019-05-27T20:15:56Z", + "updated_at": "2019-05-27T20:15:58Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893857", + "id": 12893857, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODU3", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 3, + "created_at": "2019-05-27T20:16:27Z", + "updated_at": "2019-05-27T20:16:30Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893834", + "id": 12893834, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODM0", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41836128, + "download_count": 7, + "created_at": "2019-05-27T20:15:02Z", + "updated_at": "2019-05-27T20:15:03Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893835", + "id": 12893835, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODM1", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 3, + "created_at": "2019-05-27T20:15:03Z", + "updated_at": "2019-05-27T20:15:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893858", + "id": 12893858, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODU4", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-05-27T20:16:30Z", + "updated_at": "2019-05-27T20:16:36Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893848", + "id": 12893848, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODQ4", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-05-27T20:15:59Z", + "updated_at": "2019-05-27T20:16:03Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893851", + "id": 12893851, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODUx", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636864, + "download_count": 3, + "created_at": "2019-05-27T20:16:03Z", + "updated_at": "2019-05-27T20:16:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893861", + "id": 12893861, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODYx", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38551064, + "download_count": 3, + "created_at": "2019-05-27T20:16:36Z", + "updated_at": "2019-05-27T20:16:37Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893837", + "id": 12893837, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODM3", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 4, + "created_at": "2019-05-27T20:15:07Z", + "updated_at": "2019-05-27T20:15:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893862", + "id": 12893862, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODYy", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 1, + "created_at": "2019-05-27T20:16:38Z", + "updated_at": "2019-05-27T20:16:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12893852", + "id": 12893852, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyODkzODUy", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 1, + "created_at": "2019-05-27T20:16:04Z", + "updated_at": "2019-05-27T20:16:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.6.0-rc1/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.6.0-rc1", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.6.0-rc1", + "body": "v0.6.0-rc1" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17178780", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17178780/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17178780/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.5.0", + "id": 17178780, + "node_id": "MDc6UmVsZWFzZTE3MTc4Nzgw", + "tag_name": "v0.5.0", + "target_commitish": "master", + "name": "Release v0.5.0", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-05-06T18:04:17Z", + "published_at": "2019-05-06T20:50:36Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12417212", + "id": 12417212, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE3MjEy", + "name": "e2e-failed-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1004587, + "download_count": 27, + "created_at": "2019-05-06T21:09:23Z", + "updated_at": "2019-05-06T21:09:23Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/e2e-failed-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12417213", + "id": 12417213, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE3MjEz", + "name": "e2e-passed-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 57305, + "download_count": 12, + "created_at": "2019-05-06T21:09:25Z", + "updated_at": "2019-05-06T21:09:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/e2e-passed-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12416975", + "id": 12416975, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE2OTc1", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 150, + "created_at": "2019-05-06T20:52:33Z", + "updated_at": "2019-05-06T20:52:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12416987", + "id": 12416987, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE2OTg3", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 125, + "created_at": "2019-05-06T20:53:20Z", + "updated_at": "2019-05-06T20:53:26Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12417002", + "id": 12417002, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE3MDAy", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 37, + "created_at": "2019-05-06T20:53:50Z", + "updated_at": "2019-05-06T20:53:52Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12416976", + "id": 12416976, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE2OTc2", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41831840, + "download_count": 20142, + "created_at": "2019-05-06T20:52:35Z", + "updated_at": "2019-05-06T20:52:36Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12416979", + "id": 12416979, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE2OTc5", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 560, + "created_at": "2019-05-06T20:52:37Z", + "updated_at": "2019-05-06T20:52:40Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12417003", + "id": 12417003, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE3MDAz", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 62, + "created_at": "2019-05-06T20:53:52Z", + "updated_at": "2019-05-06T20:53:59Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12416990", + "id": 12416990, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE2OTkw", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 85, + "created_at": "2019-05-06T20:53:26Z", + "updated_at": "2019-05-06T20:53:30Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12416992", + "id": 12416992, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE2OTky", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636672, + "download_count": 2410, + "created_at": "2019-05-06T20:53:30Z", + "updated_at": "2019-05-06T20:53:31Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12417005", + "id": 12417005, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE3MDA1", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38550984, + "download_count": 3132, + "created_at": "2019-05-06T20:53:59Z", + "updated_at": "2019-05-06T20:54:00Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12416981", + "id": 12416981, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE2OTgx", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 16054, + "created_at": "2019-05-06T20:52:40Z", + "updated_at": "2019-05-06T20:52:41Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12417007", + "id": 12417007, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE3MDA3", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 2916, + "created_at": "2019-05-06T20:54:01Z", + "updated_at": "2019-05-06T20:54:01Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12416994", + "id": 12416994, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyNDE2OTk0", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 2467, + "created_at": "2019-05-06T20:53:31Z", + "updated_at": "2019-05-06T20:53:31Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.5.0", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.5.0", + "body": "# Release v0.5.0\r\n\r\nK3s v0.5.0 continues to provide important bug fixes and enhancements from our community and developers. Default configurations are regularly being improved along with enhancements for usability. Another big thank you to the community for the ongoing support and contributions!\r\n\r\n## Features and Enhancements\r\n\r\n- **Add `--pause-image` flag [[\\#83](https://github.com/rancher/k3s/issues/83)]** - Support for configuring custom containerd pause image.\r\n- **Add ability to customize `config.toml.tmpl` [[\\#331](https://github.com/rancher/k3s/issues/331)]** - Support for custom containerd templated configurations.\r\n- **Add node scheduling rules for load balancer [[\\#333](https://github.com/rancher/k3s/issues/333)]** - Support adding a `svccontroller.k3s.cattle.io/enablelb` label to preferred load balancing nodes.\r\n- **Ignore extraneous files in manifest folder [[\\#280](https://github.com/rancher/k3s/issues/280)]** - Only process manifest files which end in .yml, .yaml, or .json, and are not hidden (ie no leading period).\r\n- **Enhancements for metrics-server [[\\#328](https://github.com/rancher/k3s/issues/328)]** - Automatic coredns node registration and use webhook authorization with kubelet default route binding.\r\n- **Add hostname check to agent startup [[\\#321](https://github.com/rancher/k3s/issues/321)]** - Produce error and early exit if node hostname is not resolvable.\r\n\r\n## Bug fixes\r\n\r\n- Fixed an issue where k3s needed extra flags to use CNI network plugin in docker mode [[\\#255](https://github.com/rancher/k3s/issues/255)]\r\n- Fixed an issue where k3s could not install from helm stable with a proxy set up [[\\#308](https://github.com/rancher/k3s/issues/308)]\r\n- Fixed an issue where k3s would not log to stdout fatal/error/warning messages from klog [[\\#79](https://github.com/rancher/k3s/issues/79)]\r\n- Fixed an issue where k3s could not create ISCSI or NFS mounts on some systems [[\\#103](https://github.com/rancher/k3s/issues/103)]\r\n- Fixed an issue where k3s would not correctly parse pass-through args with maps [[\\#343](https://github.com/rancher/k3s/issues/343)]\r\n- Fixed an issue where k3s would not start unless the nf_conntrack module was loaded [[\\#364](https://github.com/rancher/k3s/issues/364)]\r\n- Fixed an issue where k3s systemd install may not wait for network to be online after reboot [[\\#367](https://github.com/rancher/k3s/issues/367)]\r\n" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17145278", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17145278/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17145278/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.5.0-rc4", + "id": 17145278, + "node_id": "MDc6UmVsZWFzZTE3MTQ1Mjc4", + "tag_name": "v0.5.0-rc4", + "target_commitish": "master", + "name": "v0.5.0-rc4", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-05-03T23:11:08Z", + "published_at": "2019-05-03T23:12:46Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377020", + "id": 12377020, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDIw", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 5, + "created_at": "2019-05-03T23:14:43Z", + "updated_at": "2019-05-03T23:14:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377025", + "id": 12377025, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDI1", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 5, + "created_at": "2019-05-03T23:15:36Z", + "updated_at": "2019-05-03T23:15:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377029", + "id": 12377029, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDI5", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 4, + "created_at": "2019-05-03T23:16:05Z", + "updated_at": "2019-05-03T23:16:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377021", + "id": 12377021, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDIx", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41831840, + "download_count": 83, + "created_at": "2019-05-03T23:14:45Z", + "updated_at": "2019-05-03T23:14:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377022", + "id": 12377022, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDIy", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 10, + "created_at": "2019-05-03T23:14:46Z", + "updated_at": "2019-05-03T23:14:50Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377030", + "id": 12377030, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDMw", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 6, + "created_at": "2019-05-03T23:16:07Z", + "updated_at": "2019-05-03T23:16:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377026", + "id": 12377026, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDI2", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 6, + "created_at": "2019-05-03T23:15:38Z", + "updated_at": "2019-05-03T23:15:43Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377027", + "id": 12377027, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDI3", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636672, + "download_count": 26, + "created_at": "2019-05-03T23:15:43Z", + "updated_at": "2019-05-03T23:15:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377031", + "id": 12377031, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDMx", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38550984, + "download_count": 18, + "created_at": "2019-05-03T23:16:14Z", + "updated_at": "2019-05-03T23:16:16Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377023", + "id": 12377023, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDIz", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 42, + "created_at": "2019-05-03T23:14:50Z", + "updated_at": "2019-05-03T23:14:51Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377032", + "id": 12377032, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDMy", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 9, + "created_at": "2019-05-03T23:16:16Z", + "updated_at": "2019-05-03T23:16:16Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12377028", + "id": 12377028, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzc3MDI4", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 23, + "created_at": "2019-05-03T23:15:45Z", + "updated_at": "2019-05-03T23:15:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc4/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.5.0-rc4", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.5.0-rc4", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17120129", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17120129/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17120129/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.5.0-rc3", + "id": 17120129, + "node_id": "MDc6UmVsZWFzZTE3MTIwMTI5", + "tag_name": "v0.5.0-rc3", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "ibuildthecloud", + "id": 1754002, + "node_id": "MDQ6VXNlcjE3NTQwMDI=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1754002?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ibuildthecloud", + "html_url": "https://github.com/ibuildthecloud", + "followers_url": "https://api.github.com/users/ibuildthecloud/followers", + "following_url": "https://api.github.com/users/ibuildthecloud/following{/other_user}", + "gists_url": "https://api.github.com/users/ibuildthecloud/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ibuildthecloud/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ibuildthecloud/subscriptions", + "organizations_url": "https://api.github.com/users/ibuildthecloud/orgs", + "repos_url": "https://api.github.com/users/ibuildthecloud/repos", + "events_url": "https://api.github.com/users/ibuildthecloud/events{/privacy}", + "received_events_url": "https://api.github.com/users/ibuildthecloud/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-05-02T20:14:56Z", + "published_at": "2019-05-02T20:15:37Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357847", + "id": 12357847, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3ODQ3", + "name": "e2e-amd64-parallel.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 1070319, + "download_count": 4, + "created_at": "2019-05-02T20:33:35Z", + "updated_at": "2019-05-02T20:33:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/e2e-amd64-parallel.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357849", + "id": 12357849, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3ODQ5", + "name": "e2e-amd64-serial.log", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 59273, + "download_count": 4, + "created_at": "2019-05-02T20:33:35Z", + "updated_at": "2019-05-02T20:33:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/e2e-amd64-serial.log" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357850", + "id": 12357850, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3ODUw", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 4, + "created_at": "2019-05-02T20:33:36Z", + "updated_at": "2019-05-02T20:33:37Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357682", + "id": 12357682, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3Njgy", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 3, + "created_at": "2019-05-02T20:18:19Z", + "updated_at": "2019-05-02T20:18:21Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357691", + "id": 12357691, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3Njkx", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 3, + "created_at": "2019-05-02T20:18:59Z", + "updated_at": "2019-05-02T20:19:02Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357855", + "id": 12357855, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3ODU1", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41827648, + "download_count": 34, + "created_at": "2019-05-02T20:33:37Z", + "updated_at": "2019-05-02T20:33:39Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357856", + "id": 12357856, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3ODU2", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 3, + "created_at": "2019-05-02T20:33:39Z", + "updated_at": "2019-05-02T20:33:42Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357694", + "id": 12357694, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3Njk0", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-05-02T20:19:03Z", + "updated_at": "2019-05-02T20:19:12Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357683", + "id": 12357683, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3Njgz", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-05-02T20:18:21Z", + "updated_at": "2019-05-02T20:18:26Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357684", + "id": 12357684, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3Njg0", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636576, + "download_count": 8, + "created_at": "2019-05-02T20:18:26Z", + "updated_at": "2019-05-02T20:18:27Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357697", + "id": 12357697, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3Njk3", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38550936, + "download_count": 7, + "created_at": "2019-05-02T20:19:12Z", + "updated_at": "2019-05-02T20:19:13Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357857", + "id": 12357857, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3ODU3", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 416, + "download_count": 17, + "created_at": "2019-05-02T20:33:42Z", + "updated_at": "2019-05-02T20:33:42Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357698", + "id": 12357698, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3Njk4", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 4, + "created_at": "2019-05-02T20:19:13Z", + "updated_at": "2019-05-02T20:19:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12357685", + "id": 12357685, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU3Njg1", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 2, + "created_at": "2019-05-02T20:18:27Z", + "updated_at": "2019-05-02T20:18:27Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc3/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.5.0-rc3", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.5.0-rc3", + "body": "Known Issues:\r\n* Upgrade from previous version will break kubelet logs/exec/proxy https://github.com/rancher/k3s/issues/403" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17117856", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17117856/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17117856/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.5.0-rc2", + "id": 17117856, + "node_id": "MDc6UmVsZWFzZTE3MTE3ODU2", + "tag_name": "v0.5.0-rc2", + "target_commitish": "master", + "name": "v0.5.0-rc2", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-05-02T17:45:34Z", + "published_at": "2019-05-02T18:34:55Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12356185", + "id": 12356185, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU2MTg1", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 3, + "created_at": "2019-05-02T18:37:35Z", + "updated_at": "2019-05-02T18:37:37Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc2/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12356195", + "id": 12356195, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU2MTk1", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 3, + "created_at": "2019-05-02T18:38:14Z", + "updated_at": "2019-05-02T18:38:17Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc2/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12356197", + "id": 12356197, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU2MTk3", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-05-02T18:38:17Z", + "updated_at": "2019-05-02T18:38:24Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc2/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12356186", + "id": 12356186, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU2MTg2", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-05-02T18:37:38Z", + "updated_at": "2019-05-02T18:37:44Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc2/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12356188", + "id": 12356188, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU2MTg4", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636576, + "download_count": 4, + "created_at": "2019-05-02T18:37:44Z", + "updated_at": "2019-05-02T18:37:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc2/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12356198", + "id": 12356198, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU2MTk4", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38550936, + "download_count": 3, + "created_at": "2019-05-02T18:38:24Z", + "updated_at": "2019-05-02T18:38:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc2/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12356199", + "id": 12356199, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU2MTk5", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 1, + "created_at": "2019-05-02T18:38:25Z", + "updated_at": "2019-05-02T18:38:26Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc2/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12356189", + "id": 12356189, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMzU2MTg5", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 2, + "created_at": "2019-05-02T18:37:45Z", + "updated_at": "2019-05-02T18:37:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc2/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.5.0-rc2", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.5.0-rc2", + "body": "Known Issues:\r\n* Upgrade from previous version will break kubelet logs/exec/proxy https://github.com/rancher/k3s/issues/403" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/17013608", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/17013608/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/17013608/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.5.0-rc1", + "id": 17013608, + "node_id": "MDc6UmVsZWFzZTE3MDEzNjA4", + "tag_name": "v0.5.0-rc1", + "target_commitish": "master", + "name": "v0.5.0-rc1", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-04-26T23:02:44Z", + "published_at": "2019-04-26T23:15:20Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262082", + "id": 12262082, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMDgy", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 13, + "created_at": "2019-04-26T23:17:32Z", + "updated_at": "2019-04-26T23:17:34Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262089", + "id": 12262089, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMDg5", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 3, + "created_at": "2019-04-26T23:18:07Z", + "updated_at": "2019-04-26T23:18:13Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262103", + "id": 12262103, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMTAz", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 3, + "created_at": "2019-04-26T23:18:32Z", + "updated_at": "2019-04-26T23:18:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262083", + "id": 12262083, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMDgz", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41823552, + "download_count": 60, + "created_at": "2019-04-26T23:17:34Z", + "updated_at": "2019-04-26T23:17:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262084", + "id": 12262084, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMDg0", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 14, + "created_at": "2019-04-26T23:17:35Z", + "updated_at": "2019-04-26T23:17:39Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262104", + "id": 12262104, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMTA0", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 5, + "created_at": "2019-04-26T23:18:35Z", + "updated_at": "2019-04-26T23:18:41Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262095", + "id": 12262095, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMDk1", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 4, + "created_at": "2019-04-26T23:18:13Z", + "updated_at": "2019-04-26T23:18:18Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262100", + "id": 12262100, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMTAw", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38636576, + "download_count": 83, + "created_at": "2019-04-26T23:18:18Z", + "updated_at": "2019-04-26T23:18:19Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262108", + "id": 12262108, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMTA4", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38550936, + "download_count": 27, + "created_at": "2019-04-26T23:18:41Z", + "updated_at": "2019-04-26T23:18:44Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262085", + "id": 12262085, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMDg1", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 21, + "created_at": "2019-04-26T23:17:39Z", + "updated_at": "2019-04-26T23:17:39Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262110", + "id": 12262110, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMTEw", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 10, + "created_at": "2019-04-26T23:18:45Z", + "updated_at": "2019-04-26T23:18:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12262101", + "id": 12262101, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMjYyMTAx", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 31, + "created_at": "2019-04-26T23:18:20Z", + "updated_at": "2019-04-26T23:18:20Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.5.0-rc1/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.5.0-rc1", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.5.0-rc1", + "body": "Known Issues:\r\n* Upgrade from previous version will break kubelet logs/exec/proxy https://github.com/rancher/k3s/issues/403" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/16803779", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/16803779/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/16803779/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.4.0", + "id": 16803779, + "node_id": "MDc6UmVsZWFzZTE2ODAzNzc5", + "tag_name": "v0.4.0", + "target_commitish": "master", + "name": "Release v0.4.0", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-04-16T21:12:59Z", + "published_at": "2019-04-16T21:13:37Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100116", + "id": 12100116, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTE2", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 126, + "created_at": "2019-04-16T21:15:36Z", + "updated_at": "2019-04-16T21:15:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100127", + "id": 12100127, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTI3", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 32, + "created_at": "2019-04-16T21:16:38Z", + "updated_at": "2019-04-16T21:16:41Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100132", + "id": 12100132, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTMy", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 28, + "created_at": "2019-04-16T21:17:01Z", + "updated_at": "2019-04-16T21:17:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100117", + "id": 12100117, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTE3", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41803072, + "download_count": 6336, + "created_at": "2019-04-16T21:15:38Z", + "updated_at": "2019-04-16T21:15:39Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100118", + "id": 12100118, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTE4", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 298, + "created_at": "2019-04-16T21:15:39Z", + "updated_at": "2019-04-16T21:15:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100140", + "id": 12100140, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTQw", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 20, + "created_at": "2019-04-16T21:17:04Z", + "updated_at": "2019-04-16T21:17:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100129", + "id": 12100129, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTI5", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 34, + "created_at": "2019-04-16T21:16:41Z", + "updated_at": "2019-04-16T21:16:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100130", + "id": 12100130, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTMw", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38571040, + "download_count": 854, + "created_at": "2019-04-16T21:16:46Z", + "updated_at": "2019-04-16T21:16:47Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100142", + "id": 12100142, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTQy", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38550936, + "download_count": 1807, + "created_at": "2019-04-16T21:17:11Z", + "updated_at": "2019-04-16T21:17:12Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100119", + "id": 12100119, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTE5", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 4334, + "created_at": "2019-04-16T21:15:46Z", + "updated_at": "2019-04-16T21:15:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100143", + "id": 12100143, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTQz", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 1032, + "created_at": "2019-04-16T21:17:13Z", + "updated_at": "2019-04-16T21:17:13Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12100131", + "id": 12100131, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMTAwMTMx", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 743, + "created_at": "2019-04-16T21:16:47Z", + "updated_at": "2019-04-16T21:16:47Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.4.0", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.4.0", + "body": "# Release v0.4.0\r\n\r\nK3s v0.4.0 provides important enhancements and bug fixes found by our community. Users continue to have greater control over how k3s is configured and improved default configurations for ease of use.\r\n\r\n## Features and Enhancements\r\n\r\n- **Update to kubernetes v1.14.1** - Upgraded from Kubernetes v1.13.5 [[changelog](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#v1141)]. This Kubernetes upgrade moves pid limiting to beta and is enabled by default, which may not be supported by all kernels. K3s will auto-detect cgroup pids support and add flags as needed if the pids module is not available. [[\\#335](https://github.com/rancher/k3s/issues/335)]\r\n- **Add `--bind-address` flag for API server [[\\#214](https://github.com/rancher/k3s/issues/214)]** - Support custom bind address for kubernetes API server to bind to.\r\n- **Add `--cluster-domain` flag for custom kubelet and DNS configuration [[\\#267](https://github.com/rancher/k3s/issues/267)]** - Support configuring custom DNS cluster domains.\r\n- **Add `--flannel-iface` flag for agent [[\\#72](https://github.com/rancher/k3s/issues/72)]** - Support custom flannel interface.\r\n- **Add passthrough args [[\\#290](https://github.com/rancher/k3s/issues/290)]** - Support for overriding k3s default arguments or passing custom arguments to Kubernetes processes:\r\n```\r\n --kube-apiserver-arg value Customized flag for kube-apiserver process\r\n --kube-scheduler-arg value Customized flag for kube-scheduler process\r\n --kube-controller-arg value Customized flag for kube-controller-manager process\r\n --kubelet-arg value (agent) Customized flag for kubelet process\r\n --kube-proxy-arg value (agent) Customized flag for kube-proxy process\r\n```\r\n- **Initial metrics-server support [[\\#252](https://github.com/rancher/k3s/issues/252)]** - Configures aggregation layer so metrics server can be launched and metrics scraped. Future enhancements will remove need for a custom metrics server deployment.\r\n- **Add experimental rootless support** - Provides `--rootless` flag for running k3s agent as a user.\r\n\r\n## Bug fixes\r\n\r\n- Fixed an issue where k3s may not connect to the API server when using proxy settings [[\\#325](https://github.com/rancher/k3s/issues/325)]" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/16780594", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/16780594/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/16780594/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.4.0-rc3", + "id": 16780594, + "node_id": "MDc6UmVsZWFzZTE2NzgwNTk0", + "tag_name": "v0.4.0-rc3", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-04-15T22:52:07Z", + "published_at": "2019-04-15T22:54:05Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081833", + "id": 12081833, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxODMz", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 8, + "created_at": "2019-04-15T22:55:57Z", + "updated_at": "2019-04-15T22:55:58Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081910", + "id": 12081910, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxOTEw", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 3, + "created_at": "2019-04-15T22:56:56Z", + "updated_at": "2019-04-15T22:56:58Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081927", + "id": 12081927, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxOTI3", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 6, + "created_at": "2019-04-15T22:57:28Z", + "updated_at": "2019-04-15T22:57:31Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081836", + "id": 12081836, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxODM2", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41803072, + "download_count": 56, + "created_at": "2019-04-15T22:55:59Z", + "updated_at": "2019-04-15T22:56:00Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081839", + "id": 12081839, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxODM5", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 7, + "created_at": "2019-04-15T22:56:00Z", + "updated_at": "2019-04-15T22:56:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081929", + "id": 12081929, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxOTI5", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-04-15T22:57:31Z", + "updated_at": "2019-04-15T22:57:36Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081914", + "id": 12081914, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxOTE0", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-04-15T22:56:58Z", + "updated_at": "2019-04-15T22:57:02Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081920", + "id": 12081920, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxOTIw", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38571040, + "download_count": 6, + "created_at": "2019-04-15T22:57:02Z", + "updated_at": "2019-04-15T22:57:03Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081931", + "id": 12081931, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxOTMx", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38550936, + "download_count": 9, + "created_at": "2019-04-15T22:57:37Z", + "updated_at": "2019-04-15T22:57:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081845", + "id": 12081845, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxODQ1", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 16, + "created_at": "2019-04-15T22:56:04Z", + "updated_at": "2019-04-15T22:56:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081932", + "id": 12081932, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxOTMy", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 3, + "created_at": "2019-04-15T22:57:38Z", + "updated_at": "2019-04-15T22:57:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12081923", + "id": 12081923, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDgxOTIz", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 3, + "created_at": "2019-04-15T22:57:04Z", + "updated_at": "2019-04-15T22:57:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc3/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.4.0-rc3", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.4.0-rc3", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/16714822", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/16714822/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/16714822/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.4.0-rc2", + "id": 16714822, + "node_id": "MDc6UmVsZWFzZTE2NzE0ODIy", + "tag_name": "v0.4.0-rc2", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-04-11T23:25:02Z", + "published_at": "2019-04-11T23:31:34Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024810", + "id": 12024810, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODEw", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83469520, + "download_count": 9, + "created_at": "2019-04-11T23:33:23Z", + "updated_at": "2019-04-11T23:33:24Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024825", + "id": 12024825, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODI1", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79422736, + "download_count": 4, + "created_at": "2019-04-11T23:34:37Z", + "updated_at": "2019-04-11T23:34:39Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024829", + "id": 12024829, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODI5", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71719136, + "download_count": 5, + "created_at": "2019-04-11T23:34:50Z", + "updated_at": "2019-04-11T23:34:54Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024812", + "id": 12024812, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODEy", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41802976, + "download_count": 249, + "created_at": "2019-04-11T23:33:24Z", + "updated_at": "2019-04-11T23:33:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024813", + "id": 12024813, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODEz", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 10, + "created_at": "2019-04-11T23:33:25Z", + "updated_at": "2019-04-11T23:33:29Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024830", + "id": 12024830, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODMw", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-04-11T23:34:54Z", + "updated_at": "2019-04-11T23:35:04Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024826", + "id": 12024826, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODI2", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-04-11T23:34:39Z", + "updated_at": "2019-04-11T23:34:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024827", + "id": 12024827, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODI3", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38570944, + "download_count": 32, + "created_at": "2019-04-11T23:34:45Z", + "updated_at": "2019-04-11T23:34:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024831", + "id": 12024831, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODMx", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38550888, + "download_count": 18, + "created_at": "2019-04-11T23:35:04Z", + "updated_at": "2019-04-11T23:35:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024815", + "id": 12024815, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODE1", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 37, + "created_at": "2019-04-11T23:33:29Z", + "updated_at": "2019-04-11T23:33:29Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024832", + "id": 12024832, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODMy", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 6, + "created_at": "2019-04-11T23:35:05Z", + "updated_at": "2019-04-11T23:35:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/12024828", + "id": 12024828, + "node_id": "MDEyOlJlbGVhc2VBc3NldDEyMDI0ODI4", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 6, + "created_at": "2019-04-11T23:34:46Z", + "updated_at": "2019-04-11T23:34:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc2/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.4.0-rc2", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.4.0-rc2", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/16654981", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/16654981/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/16654981/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.4.0-rc1", + "id": 16654981, + "node_id": "MDc6UmVsZWFzZTE2NjU0OTgx", + "tag_name": "v0.4.0-rc1", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "ibuildthecloud", + "id": 1754002, + "node_id": "MDQ6VXNlcjE3NTQwMDI=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1754002?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ibuildthecloud", + "html_url": "https://github.com/ibuildthecloud", + "followers_url": "https://api.github.com/users/ibuildthecloud/followers", + "following_url": "https://api.github.com/users/ibuildthecloud/following{/other_user}", + "gists_url": "https://api.github.com/users/ibuildthecloud/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ibuildthecloud/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ibuildthecloud/subscriptions", + "organizations_url": "https://api.github.com/users/ibuildthecloud/orgs", + "repos_url": "https://api.github.com/users/ibuildthecloud/repos", + "events_url": "https://api.github.com/users/ibuildthecloud/events{/privacy}", + "received_events_url": "https://api.github.com/users/ibuildthecloud/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-04-09T17:50:17Z", + "published_at": "2019-04-09T17:51:35Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973525", + "id": 11973525, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTI1", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 83115984, + "download_count": 3, + "created_at": "2019-04-09T17:53:36Z", + "updated_at": "2019-04-09T17:53:38Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973545", + "id": 11973545, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTQ1", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79085584, + "download_count": 3, + "created_at": "2019-04-09T17:54:33Z", + "updated_at": "2019-04-09T17:54:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973554", + "id": 11973554, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTU0", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 71414832, + "download_count": 3, + "created_at": "2019-04-09T17:55:08Z", + "updated_at": "2019-04-09T17:55:10Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973526", + "id": 11973526, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTI2", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 41721056, + "download_count": 71, + "created_at": "2019-04-09T17:53:38Z", + "updated_at": "2019-04-09T17:53:39Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973527", + "id": 11973527, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTI3", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 9, + "created_at": "2019-04-09T17:53:39Z", + "updated_at": "2019-04-09T17:53:43Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973555", + "id": 11973555, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTU1", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-04-09T17:55:11Z", + "updated_at": "2019-04-09T17:55:17Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973546", + "id": 11973546, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTQ2", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-04-09T17:54:35Z", + "updated_at": "2019-04-09T17:54:44Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973549", + "id": 11973549, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTQ5", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38505408, + "download_count": 5, + "created_at": "2019-04-09T17:54:44Z", + "updated_at": "2019-04-09T17:54:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973556", + "id": 11973556, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTU2", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 38485352, + "download_count": 26, + "created_at": "2019-04-09T17:55:17Z", + "updated_at": "2019-04-09T17:55:18Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973528", + "id": 11973528, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTI4", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 32, + "created_at": "2019-04-09T17:53:43Z", + "updated_at": "2019-04-09T17:53:43Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973557", + "id": 11973557, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTU3", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 19, + "created_at": "2019-04-09T17:55:19Z", + "updated_at": "2019-04-09T17:55:19Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11973550", + "id": 11973550, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExOTczNTUw", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 3, + "created_at": "2019-04-09T17:54:45Z", + "updated_at": "2019-04-09T17:54:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.4.0-rc1/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.4.0-rc1", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.4.0-rc1", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/16447432", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/16447432/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/16447432/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.3.0", + "id": 16447432, + "node_id": "MDc6UmVsZWFzZTE2NDQ3NDMy", + "tag_name": "v0.3.0", + "target_commitish": "master", + "name": "Release v0.3.0", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": false, + "created_at": "2019-03-29T23:55:50Z", + "published_at": "2019-03-29T23:57:35Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803383", + "id": 11803383, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzgz", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79891856, + "download_count": 87, + "created_at": "2019-03-30T00:00:29Z", + "updated_at": "2019-03-30T00:00:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803380", + "id": 11803380, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzgw", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 75984336, + "download_count": 21, + "created_at": "2019-03-30T00:00:22Z", + "updated_at": "2019-03-30T00:00:24Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803393", + "id": 11803393, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzkz", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 68609696, + "download_count": 15, + "created_at": "2019-03-30T00:01:05Z", + "updated_at": "2019-03-30T00:01:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803386", + "id": 11803386, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzg2", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 40631328, + "download_count": 5412, + "created_at": "2019-03-30T00:00:45Z", + "updated_at": "2019-03-30T00:00:46Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803387", + "id": 11803387, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzg3", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 187, + "created_at": "2019-03-30T00:00:46Z", + "updated_at": "2019-03-30T00:00:50Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803394", + "id": 11803394, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzk0", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 15, + "created_at": "2019-03-30T00:01:07Z", + "updated_at": "2019-03-30T00:01:13Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803381", + "id": 11803381, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzgx", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 23, + "created_at": "2019-03-30T00:00:24Z", + "updated_at": "2019-03-30T00:00:33Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803384", + "id": 11803384, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzg0", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 37522176, + "download_count": 588, + "created_at": "2019-03-30T00:00:33Z", + "updated_at": "2019-03-30T00:00:34Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803395", + "id": 11803395, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzk1", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 37436696, + "download_count": 1097, + "created_at": "2019-03-30T00:01:13Z", + "updated_at": "2019-03-30T00:01:15Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803388", + "id": 11803388, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzg4", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 3402, + "created_at": "2019-03-30T00:00:50Z", + "updated_at": "2019-03-30T00:00:50Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803396", + "id": 11803396, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzk2", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 853, + "created_at": "2019-03-30T00:01:15Z", + "updated_at": "2019-03-30T00:01:15Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11803385", + "id": 11803385, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExODAzMzg1", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 343, + "created_at": "2019-03-30T00:00:34Z", + "updated_at": "2019-03-30T00:00:34Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.3.0", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.3.0", + "body": "# Release v0.3.0\r\n\r\nK3s v0.3.0 continues to focus on delivering important enhancements and bug fixes found by our community. Users now have greater control over where and how they deploy k3s, including the ability to install in environments lacking Internet access.\r\n\r\n## Features and Enhancements\r\n\r\n- **Airgap support with helm and preinstalled images [[\\#166](https://github.com/rancher/k3s/issues/166)]** - Support static helm charts through the API server and loading container images on agents. See our [documentation](https://github.com/rancher/k3s#air-gap-support) for details on how to perform airgap installations.\r\n- **Add `--tls-san` flag for API server cert validation [[\\#200](https://github.com/rancher/k3s/issues/200)]** - Support alternate names for cert generation to avoid API cert issues.\r\n- **Add `--resolv-conf` flag for custom kubelet DNS configuration [[\\#53](https://github.com/rancher/k3s/issues/53)]** - Support configuring custom DNS resolvers or using the host system's resolv.conf configuration. If the host system's resolv.conf doesn't supply any viable resolvers, intelligently fallback to 8.8.8.8 (Google Public DNS).\r\n- **Update to kubernetes v1.13.5** - This upgrade from v1.13.4 addresses Kubernetes [CVE-2019-9946](https://github.com/kubernetes/kubernetes/pull/75455) and [CVE-2019-1002101](https://github.com/kubernetes/kubernetes/pull/75037). \r\n\r\n## Bug fixes\r\n\r\n- Fixed an issue where the k3s service load balancer will not be created if the port name is longer than 15 characters [\\#90](https://github.com/rancher/k3s/issues/90)\r\n- Fixed an issue where k3s does not ignore empty yaml documents in a manfest [\\#222](https://github.com/rancher/k3s/issues/222)\r\n- Fixed an issue where k3s may not run with selinux, the installer will now add selinux permissions [\\#227](https://github.com/rancher/k3s/issues/227)\r\n- Fixed an issue where k3s deployment manifests are created even if `--no-deploy` is specified [\\#230](https://github.com/rancher/k3s/issues/230)\r\n" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/16426707", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/16426707/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/16426707/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.3.0-rc4", + "id": 16426707, + "node_id": "MDc6UmVsZWFzZTE2NDI2NzA3", + "tag_name": "v0.3.0-rc4", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "erikwilson", + "id": 1999874, + "node_id": "MDQ6VXNlcjE5OTk4NzQ=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1999874?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/erikwilson", + "html_url": "https://github.com/erikwilson", + "followers_url": "https://api.github.com/users/erikwilson/followers", + "following_url": "https://api.github.com/users/erikwilson/following{/other_user}", + "gists_url": "https://api.github.com/users/erikwilson/gists{/gist_id}", + "starred_url": "https://api.github.com/users/erikwilson/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/erikwilson/subscriptions", + "organizations_url": "https://api.github.com/users/erikwilson/orgs", + "repos_url": "https://api.github.com/users/erikwilson/repos", + "events_url": "https://api.github.com/users/erikwilson/events{/privacy}", + "received_events_url": "https://api.github.com/users/erikwilson/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-03-29T01:46:26Z", + "published_at": "2019-03-29T03:32:25Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786753", + "id": 11786753, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzUz", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79891856, + "download_count": 8, + "created_at": "2019-03-29T03:36:58Z", + "updated_at": "2019-03-29T03:37:00Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786746", + "id": 11786746, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzQ2", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 75984336, + "download_count": 3, + "created_at": "2019-03-29T03:35:24Z", + "updated_at": "2019-03-29T03:35:27Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786751", + "id": 11786751, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzUx", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 68609696, + "download_count": 3, + "created_at": "2019-03-29T03:35:33Z", + "updated_at": "2019-03-29T03:38:35Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786754", + "id": 11786754, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzU0", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 40627232, + "download_count": 55, + "created_at": "2019-03-29T03:37:00Z", + "updated_at": "2019-03-29T03:37:01Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786755", + "id": 11786755, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzU1", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 9, + "created_at": "2019-03-29T03:37:01Z", + "updated_at": "2019-03-29T03:37:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786763", + "id": 11786763, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzYz", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-03-29T03:38:36Z", + "updated_at": "2019-03-29T03:46:11Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786748", + "id": 11786748, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzQ4", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-03-29T03:35:27Z", + "updated_at": "2019-03-29T03:35:31Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786749", + "id": 11786749, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzQ5", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 37522176, + "download_count": 26, + "created_at": "2019-03-29T03:35:31Z", + "updated_at": "2019-03-29T03:35:32Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786807", + "id": 11786807, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2ODA3", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 37436696, + "download_count": 59, + "created_at": "2019-03-29T03:46:12Z", + "updated_at": "2019-03-29T03:46:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786757", + "id": 11786757, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzU3", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 29, + "created_at": "2019-03-29T03:37:05Z", + "updated_at": "2019-03-29T03:37:05Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786808", + "id": 11786808, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2ODA4", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 5, + "created_at": "2019-03-29T03:46:25Z", + "updated_at": "2019-03-29T03:46:25Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11786750", + "id": 11786750, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzg2NzUw", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 1, + "created_at": "2019-03-29T03:35:32Z", + "updated_at": "2019-03-29T03:35:32Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc4/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.3.0-rc4", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.3.0-rc4", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/16369956", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/16369956/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/16369956/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.3.0-rc3", + "id": 16369956, + "node_id": "MDc6UmVsZWFzZTE2MzY5OTU2", + "tag_name": "v0.3.0-rc3", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "ibuildthecloud", + "id": 1754002, + "node_id": "MDQ6VXNlcjE3NTQwMDI=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1754002?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ibuildthecloud", + "html_url": "https://github.com/ibuildthecloud", + "followers_url": "https://api.github.com/users/ibuildthecloud/followers", + "following_url": "https://api.github.com/users/ibuildthecloud/following{/other_user}", + "gists_url": "https://api.github.com/users/ibuildthecloud/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ibuildthecloud/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ibuildthecloud/subscriptions", + "organizations_url": "https://api.github.com/users/ibuildthecloud/orgs", + "repos_url": "https://api.github.com/users/ibuildthecloud/repos", + "events_url": "https://api.github.com/users/ibuildthecloud/events{/privacy}", + "received_events_url": "https://api.github.com/users/ibuildthecloud/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-03-26T23:38:48Z", + "published_at": "2019-03-26T23:42:26Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745551", + "id": 11745551, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTUx", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79900080, + "download_count": 19, + "created_at": "2019-03-26T23:44:15Z", + "updated_at": "2019-03-26T23:44:17Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745565", + "id": 11745565, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTY1", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 75992560, + "download_count": 4, + "created_at": "2019-03-26T23:45:07Z", + "updated_at": "2019-03-26T23:45:09Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745584", + "id": 11745584, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTg0", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 68609728, + "download_count": 4, + "created_at": "2019-03-26T23:45:58Z", + "updated_at": "2019-03-26T23:46:01Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745553", + "id": 11745553, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTUz", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 40627232, + "download_count": 115, + "created_at": "2019-03-26T23:44:17Z", + "updated_at": "2019-03-26T23:44:18Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745554", + "id": 11745554, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTU0", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 35, + "created_at": "2019-03-26T23:44:18Z", + "updated_at": "2019-03-26T23:44:22Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745586", + "id": 11745586, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTg2", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 4, + "created_at": "2019-03-26T23:46:01Z", + "updated_at": "2019-03-26T23:46:07Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745567", + "id": 11745567, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTY3", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 20, + "created_at": "2019-03-26T23:45:09Z", + "updated_at": "2019-03-26T23:45:14Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745568", + "id": 11745568, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTY4", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 37522176, + "download_count": 28, + "created_at": "2019-03-26T23:45:14Z", + "updated_at": "2019-03-26T23:45:15Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745594", + "id": 11745594, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTk0", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 37436696, + "download_count": 13, + "created_at": "2019-03-26T23:46:07Z", + "updated_at": "2019-03-26T23:46:09Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745555", + "id": 11745555, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTU1", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 27, + "created_at": "2019-03-26T23:44:22Z", + "updated_at": "2019-03-26T23:44:22Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745595", + "id": 11745595, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTk1", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 4, + "created_at": "2019-03-26T23:46:09Z", + "updated_at": "2019-03-26T23:46:09Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11745569", + "id": 11745569, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQ1NTY5", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 5, + "created_at": "2019-03-26T23:45:15Z", + "updated_at": "2019-03-26T23:45:15Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc3/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.3.0-rc3", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.3.0-rc3", + "body": "" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/16362919", + "assets_url": "https://api.github.com/repos/rancher/k3s/releases/16362919/assets", + "upload_url": "https://uploads.github.com/repos/rancher/k3s/releases/16362919/assets{?name,label}", + "html_url": "https://github.com/rancher/k3s/releases/tag/v0.3.0-rc2", + "id": 16362919, + "node_id": "MDc6UmVsZWFzZTE2MzYyOTE5", + "tag_name": "v0.3.0-rc2", + "target_commitish": "master", + "name": "", + "draft": false, + "author": { + "login": "ibuildthecloud", + "id": 1754002, + "node_id": "MDQ6VXNlcjE3NTQwMDI=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1754002?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/ibuildthecloud", + "html_url": "https://github.com/ibuildthecloud", + "followers_url": "https://api.github.com/users/ibuildthecloud/followers", + "following_url": "https://api.github.com/users/ibuildthecloud/following{/other_user}", + "gists_url": "https://api.github.com/users/ibuildthecloud/gists{/gist_id}", + "starred_url": "https://api.github.com/users/ibuildthecloud/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/ibuildthecloud/subscriptions", + "organizations_url": "https://api.github.com/users/ibuildthecloud/orgs", + "repos_url": "https://api.github.com/users/ibuildthecloud/repos", + "events_url": "https://api.github.com/users/ibuildthecloud/events{/privacy}", + "received_events_url": "https://api.github.com/users/ibuildthecloud/received_events", + "type": "User", + "site_admin": false + }, + "prerelease": true, + "created_at": "2019-03-26T02:14:26Z", + "published_at": "2019-03-26T18:15:53Z", + "assets": [ + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740805", + "id": 11740805, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwODA1", + "name": "hyperkube", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 79900080, + "download_count": 3, + "created_at": "2019-03-26T18:17:50Z", + "updated_at": "2019-03-26T18:17:52Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/hyperkube" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740915", + "id": 11740915, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwOTE1", + "name": "hyperkube-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 75992560, + "download_count": 3, + "created_at": "2019-03-26T18:20:42Z", + "updated_at": "2019-03-26T18:20:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/hyperkube-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740928", + "id": 11740928, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwOTI4", + "name": "hyperkube-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 68609728, + "download_count": 3, + "created_at": "2019-03-26T18:21:37Z", + "updated_at": "2019-03-26T18:21:40Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/hyperkube-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740806", + "id": 11740806, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwODA2", + "name": "k3s", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 40623040, + "download_count": 6, + "created_at": "2019-03-26T18:17:52Z", + "updated_at": "2019-03-26T18:17:53Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/k3s" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740807", + "id": 11740807, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwODA3", + "name": "k3s-airgap-images-amd64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 203740160, + "download_count": 3, + "created_at": "2019-03-26T18:17:53Z", + "updated_at": "2019-03-26T18:17:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/k3s-airgap-images-amd64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740929", + "id": 11740929, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwOTI5", + "name": "k3s-airgap-images-arm.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 175422464, + "download_count": 3, + "created_at": "2019-03-26T18:21:40Z", + "updated_at": "2019-03-26T18:21:45Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/k3s-airgap-images-arm.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740916", + "id": 11740916, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwOTE2", + "name": "k3s-airgap-images-arm64.tar", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/x-tar", + "state": "uploaded", + "size": 191020032, + "download_count": 3, + "created_at": "2019-03-26T18:20:45Z", + "updated_at": "2019-03-26T18:20:49Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/k3s-airgap-images-arm64.tar" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740918", + "id": 11740918, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwOTE4", + "name": "k3s-arm64", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 37522080, + "download_count": 4, + "created_at": "2019-03-26T18:20:49Z", + "updated_at": "2019-03-26T18:20:52Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/k3s-arm64" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740932", + "id": 11740932, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwOTMy", + "name": "k3s-armhf", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "application/octet-stream", + "state": "uploaded", + "size": 37436648, + "download_count": 13, + "created_at": "2019-03-26T18:21:46Z", + "updated_at": "2019-03-26T18:21:47Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/k3s-armhf" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740817", + "id": 11740817, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwODE3", + "name": "sha256sum-amd64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 240, + "download_count": 4, + "created_at": "2019-03-26T18:17:57Z", + "updated_at": "2019-03-26T18:17:57Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/sha256sum-amd64.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740933", + "id": 11740933, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwOTMz", + "name": "sha256sum-arm.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 250, + "download_count": 7, + "created_at": "2019-03-26T18:21:47Z", + "updated_at": "2019-03-26T18:21:47Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/sha256sum-arm.txt" + }, + { + "url": "https://api.github.com/repos/rancher/k3s/releases/assets/11740919", + "id": 11740919, + "node_id": "MDEyOlJlbGVhc2VBc3NldDExNzQwOTE5", + "name": "sha256sum-arm64.txt", + "label": "", + "uploader": { + "login": "rancherio-gh-m", + "id": 9737307, + "node_id": "MDQ6VXNlcjk3MzczMDc=", + "avatar_url": "https://avatars2.githubusercontent.com/u/9737307?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/rancherio-gh-m", + "html_url": "https://github.com/rancherio-gh-m", + "followers_url": "https://api.github.com/users/rancherio-gh-m/followers", + "following_url": "https://api.github.com/users/rancherio-gh-m/following{/other_user}", + "gists_url": "https://api.github.com/users/rancherio-gh-m/gists{/gist_id}", + "starred_url": "https://api.github.com/users/rancherio-gh-m/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/rancherio-gh-m/subscriptions", + "organizations_url": "https://api.github.com/users/rancherio-gh-m/orgs", + "repos_url": "https://api.github.com/users/rancherio-gh-m/repos", + "events_url": "https://api.github.com/users/rancherio-gh-m/events{/privacy}", + "received_events_url": "https://api.github.com/users/rancherio-gh-m/received_events", + "type": "User", + "site_admin": false + }, + "content_type": "text/plain; charset=utf-8", + "state": "uploaded", + "size": 252, + "download_count": 2, + "created_at": "2019-03-26T18:20:52Z", + "updated_at": "2019-03-26T18:20:52Z", + "browser_download_url": "https://github.com/rancher/k3s/releases/download/v0.3.0-rc2/sha256sum-arm64.txt" + } + ], + "tarball_url": "https://api.github.com/repos/rancher/k3s/tarball/v0.3.0-rc2", + "zipball_url": "https://api.github.com/repos/rancher/k3s/zipball/v0.3.0-rc2", + "body": "" + } +] diff --git a/terraform/variables.tf b/terraform/variables.tf new file mode 100644 index 0000000..93b2743 --- /dev/null +++ b/terraform/variables.tf @@ -0,0 +1,20 @@ +variable "region" { + default = "par1" + description = "Values: par1 ams1" +} + +variable "arch" { + default = "x86_64" + description = "Values: x86_64 arm64" +} + +variable "debian_version" { + default = "Debian Stretch" +} + +variable "k8s_master_server_type" { +} + +variable "node_count" { + default = "3" +} -- cgit v1.2.3