This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
forked from poblin-orange/k3s-boshrelease
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from poblin-orange/develop
version 13 PR
- Loading branch information
Showing
21 changed files
with
154 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
builds: | ||
a40f672ab55c059a574505773ad52eba2289a2ba7bb429ee912c06df0069865c: | ||
version: a40f672ab55c059a574505773ad52eba2289a2ba7bb429ee912c06df0069865c | ||
blobstore_id: 80f7d259-09d4-48ad-518d-49cf0641e54e | ||
sha1: sha256:47c06fd31e1652ed34f362e8735e1f6dec3f2fc1dc5310aa1506782b0214e6ca | ||
format-version: "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
builds: | ||
c34c089469901cde75116adcb0d8de9c186ed301b4166ffc0f532da5cd2e7440: | ||
version: c34c089469901cde75116adcb0d8de9c186ed301b4166ffc0f532da5cd2e7440 | ||
blobstore_id: ceda4cd6-c78c-4318-4029-c729d1e97004 | ||
sha1: sha256:94b3c2d59c7aab44723dd6aeceb5d9658c2d3c372212f20807ceabdc0f7a7953 | ||
format-version: "2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
jobs/k3s-airgaped-images/spec → jobs/k3s-agent-airgaped-images/spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
name: k3s-airgaped-images | ||
name: k3s-agent-airgaped-images | ||
|
||
packages: | ||
- k3s-images | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: k3s-server-airgaped-images | ||
|
||
packages: | ||
- k3s-images | ||
|
||
templates: | ||
bin/pre-start.erb: bin/pre-start | ||
|
||
# Documentation https://bosh.io/docs/links.html | ||
# Tutorial https://gist.github.com/Amit-PivotalLabs/c39528248b8cdc4ba8e347f8aa68abb6 | ||
consumes: [] | ||
|
||
provides: | ||
- name: k3s-airgaped-images | ||
type: k3s-airgaped-images | ||
|
||
properties: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
|
||
#copy images to containerd expected location (datadir/images) for airgap start. | ||
# see https://rancher.com/docs/k3s/latest/en/installation/airgap/ | ||
mkdir -p /var/vcap/data/k3s-server/kubelet/images | ||
cp /var/vcap/packages/k3s-images/k3s-airgap-images-amd64.tar /var/vcap/data/k3s-server/kubelet/images | ||
|
||
echo 'done installing airgaped docker images for containerd' | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
processes: | ||
- name: k3s-airgaped-images | ||
executable: /var/vcap/packages/k3s-airgaped-images/bin/k3s-airgaped-images | ||
args: [] | ||
ephemeral_disk: true | ||
persistent_disk: false | ||
env: | ||
PORT: <%= p("port") %> | ||
limits: | ||
memory: 1G | ||
open_files: 1024 | ||
|
||
# examples/docs at: | ||
# - https://github.com/cloudfoundry-incubator/bpm-release/blob/master/jobs/test-server/templates/bpm.yml.erb | ||
# - https://github.com/cloudfoundry-incubator/bpm-release/tree/master/docs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: k3s | ||
version: "13" | ||
commit_hash: bf4ca12 | ||
uncommitted_changes: false | ||
jobs: | ||
- name: k3s-agent | ||
version: 4f6d8e6a215704d7b2031495b0bb461222c60e8f9b096b6c7844fd777c07fee7 | ||
fingerprint: 4f6d8e6a215704d7b2031495b0bb461222c60e8f9b096b6c7844fd777c07fee7 | ||
sha1: sha256:9356dbda910cc1bb3902188638239832776703908c1c18c8b5e8602f1967bdff | ||
packages: | ||
- k3s | ||
- kubectl-k3s | ||
- k3s-images | ||
- name: k3s-agent-airgaped-images | ||
version: a40f672ab55c059a574505773ad52eba2289a2ba7bb429ee912c06df0069865c | ||
fingerprint: a40f672ab55c059a574505773ad52eba2289a2ba7bb429ee912c06df0069865c | ||
sha1: sha256:47c06fd31e1652ed34f362e8735e1f6dec3f2fc1dc5310aa1506782b0214e6ca | ||
packages: | ||
- k3s-images | ||
- name: k3s-server | ||
version: a01f52790a95df1f9f9bbeeadd03fa45777a00f0f75267dc835c44ab74431edb | ||
fingerprint: a01f52790a95df1f9f9bbeeadd03fa45777a00f0f75267dc835c44ab74431edb | ||
sha1: sha256:ce5325ab3dd4a6804f2565220640f53419bbaa9873196412010b57b7c72d70f5 | ||
packages: | ||
- k3s | ||
- k9s | ||
- kubectl-k3s | ||
- name: k3s-server-airgaped-images | ||
version: c34c089469901cde75116adcb0d8de9c186ed301b4166ffc0f532da5cd2e7440 | ||
fingerprint: c34c089469901cde75116adcb0d8de9c186ed301b4166ffc0f532da5cd2e7440 | ||
sha1: sha256:94b3c2d59c7aab44723dd6aeceb5d9658c2d3c372212f20807ceabdc0f7a7953 | ||
packages: | ||
- k3s-images | ||
packages: | ||
- name: k3s | ||
version: 86d856c7d6464004304bdd286d2431966548c756f4cab0cd2860874637fa5c20 | ||
fingerprint: 86d856c7d6464004304bdd286d2431966548c756f4cab0cd2860874637fa5c20 | ||
sha1: sha256:a112fe4708dc71c4bb341902a1c126a01f5c798a717fce21e707d159227efa2f | ||
dependencies: [] | ||
- name: k3s-images | ||
version: c78a8c2e8cd3d8f69ec70c3f38db944e40cdd94f79ce9a32eef8325cf9c08311 | ||
fingerprint: c78a8c2e8cd3d8f69ec70c3f38db944e40cdd94f79ce9a32eef8325cf9c08311 | ||
sha1: sha256:359a920d70cd47fa7ce7176a2fa4bb647c17c03b8f5191f7a22ab9be65b56a9c | ||
dependencies: [] | ||
- name: k9s | ||
version: 24b739026ef4bf491afc64ba3f32f7373dfe02e72f3f12a99af4f2c2b0eb106b | ||
fingerprint: 24b739026ef4bf491afc64ba3f32f7373dfe02e72f3f12a99af4f2c2b0eb106b | ||
sha1: sha256:c1cffd40cbbb48bd80a35acf981d428051740da0c68835de7bede43d24cb3ece | ||
dependencies: [] | ||
- name: kubectl-k3s | ||
version: 41fe074fc5fe879b1909bdc82b3050c42b94e2d4aa945de2ce4e5f5737feb8dc | ||
fingerprint: 41fe074fc5fe879b1909bdc82b3050c42b94e2d4aa945de2ce4e5f5737feb8dc | ||
sha1: sha256:79ec01ab7c166b7121052ee44ce0109bb0318bb8e14e5e23c7b1d9dc5f619910 | ||
dependencies: [] | ||
license: | ||
version: cf0ca1fe65dee9607c7bb9460a3f20835e582cbb7f5b2c3625fba2e21d7e91b9 | ||
fingerprint: cf0ca1fe65dee9607c7bb9460a3f20835e582cbb7f5b2c3625fba2e21d7e91b9 | ||
sha1: sha256:cbe3175489dfaec91e9f392399fbfb68e008885feb91a3b8d493a35d2fc5a8fa |