forked from rancher/os
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use burmilla GitHub repos - Release under burmilla Docker Hub - GitHub action for create releases - Updated boot image and login banner - Use Debian as default console - Updated system-cron to v0.5.0 - Updated services to latest versions - Bump up kernel to 4.14.206 - Include burmilla/os-debianconsole:v1.9.0 to initrd
- Loading branch information
Showing
207 changed files
with
722 additions
and
1,028 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 |
---|---|---|
|
@@ -12,7 +12,6 @@ tests/integration/.tox | |
*/*/*/*.pyc | ||
*/*/*/__pycache__ | ||
.trash-cache | ||
#.dapper | ||
vendor/*/*/*/.git | ||
tmp | ||
docs/_site |
This file was deleted.
Oops, something went wrong.
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,20 @@ | ||
**RancherOS Version: (ros os version)** | ||
**BurmillaOS Version: (ros os version)** | ||
|
||
**Where are you running RancherOS? (docker-machine, AWS, GCE, baremetal, etc.)** | ||
**Where are you running BurmillaOS? (docker-machine, AWS, GCE, baremetal, etc.)** | ||
|
||
**Which processor architecture you are using?** | ||
|
||
**Do you use some extra hardware? (GPU, etc)?** | ||
|
||
**Which console you use (default, ubuntu, centos, etc..)** | ||
|
||
**Do you use some service(s) which are not enabled by default?** | ||
|
||
**Have you installed some extra tools to console?** | ||
|
||
**Do you use some other customizations?** | ||
|
||
**Please share copy of your cloud-init (remember remove all sensitive data first)** | ||
```yaml | ||
<replace with sudo ros config export output> | ||
``` |
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,44 @@ | ||
name: add-platform-spefific | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
platform: | ||
description: 'Platform' | ||
default: 'vmware' | ||
required: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: '0' | ||
|
||
- name: Install github-release | ||
run: | | ||
wget -O - -o /dev/null https://github.com/github-release/github-release/releases/download/v0.9.0/linux-amd64-github-release.bz2 | bunzip2 | sudo tee /usr/local/bin/github-release | ||
sudo chmod 0755 /usr/local/bin/github-release | ||
- name: Build OS | ||
run: | | ||
export VERSION=$(git describe --exact-match --tags $(git log -n1 --pretty='%h')) | ||
if [ -z "$VERSION" ]; then | ||
echo "Build is not started from tag. Will exit..." | ||
exit 1 | ||
fi | ||
export ARCH=amd64 | ||
export APPEND_SYSTEM_IMAGES="burmilla/os-debianconsole:$VERSION" | ||
make ${{ github.event.inputs.platform }} | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Publish release | ||
run: ${PWD}/dist/publish.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.OS_RELEASE_TOKEN }} |
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,48 @@ | ||
name: release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
arch: | ||
description: 'Architecture' | ||
default: 'amd64' | ||
required: true | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: '0' | ||
|
||
- name: Install github-release | ||
run: | | ||
wget -O - -o /dev/null https://github.com/github-release/github-release/releases/download/v0.9.0/linux-amd64-github-release.bz2 | bunzip2 | sudo tee /usr/local/bin/github-release | ||
sudo chmod 0755 /usr/local/bin/github-release | ||
- name: Build OS | ||
run: | | ||
export VERSION=$(git describe --exact-match --tags $(git log -n1 --pretty='%h')) | ||
if [ -z "$VERSION" ]; then | ||
echo "Build is not started from tag. Will exit..." | ||
exit 1 | ||
fi | ||
export ARCH=${{ github.event.inputs.arch }} | ||
export APPEND_SYSTEM_IMAGES="burmilla/os-debianconsole:$VERSION" | ||
make release | ||
if [ "$ARCH" == "arm64" ]; then | ||
make rpi64 | ||
fi | ||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Publish release | ||
run: ${PWD}/dist/publish.sh | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.OS_RELEASE_TOKEN }} |
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 |
---|---|---|
|
@@ -20,3 +20,5 @@ __pycache__ | |
/trash.lock | ||
.idea | ||
.trash-conf | ||
/Dockerfile.dapper* | ||
!/Dockerfile.dapper |
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
Oops, something went wrong.