Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to ubuntu:mantic-20231128 #15

Open
wants to merge 39 commits into
base: bump
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
7d50c73
Bump to ubuntu:mantic-20231128
Jan 18, 2024
53df3f1
For WILDCARD DNS update create-zone with INGRESS_IP
Jan 19, 2024
5c70f4a
Bump UID back to 1001
Jan 19, 2024
009fefc
Update deployment, domain, namespace - minor refactor
Jan 23, 2024
946a449
Syncing current iiPod with ii/iipod
Jan 30, 2024
5357b48
Update deployment metadata to be markdown links
Jan 31, 2024
e9210ac
Open in new window by default
Jan 31, 2024
e8c041a
Fix quotes
Jan 31, 2024
c6bbbd8
Would prefer ability to open in new window/tab by default
Jan 31, 2024
ab80479
autoconnect and resize=remote for vnc deployment
Jan 31, 2024
dd39a5c
Appending (:target=_blank) to open in new window
Jan 31, 2024
59e067d
(:target=blank) doesn't work
Jan 31, 2024
3e808f0
chore: minor updates
Oct 3, 2024
c9715c7
feat: add github actions workflow for build
BobyMCbobs Oct 3, 2024
1701332
chore: update iipod build workflows
BobyMCbobs Oct 7, 2024
c9ad262
chore: remove github token from agent
BobyMCbobs Oct 8, 2024
a139216
chore: update params and defaults
BobyMCbobs Oct 8, 2024
1b933d8
chore: left/right eye
hh Oct 8, 2024
d40420c
use single per subsriber
hh Oct 8, 2024
2d8678f
left- right-
Oct 15, 2024
2289a1a
chore: quality of life update
BobyMCbobs Oct 17, 2024
f2470d8
chore: make iipod run as privileged
BobyMCbobs Oct 17, 2024
a3115bd
chore: add mounts for docker
BobyMCbobs Oct 17, 2024
a59dea7
chore: enable docker service on startup
BobyMCbobs Oct 17, 2024
2b753fe
chore: use env bash for startup.sh
BobyMCbobs Oct 17, 2024
55d9163
chore: ignore unused variable dns_update_account
BobyMCbobs Oct 17, 2024
5d9e226
chore: remove conflict diff for ing-right
BobyMCbobs Oct 17, 2024
1b746a5
feat: add kata with dind
Oct 21, 2024
845589c
feat: add conditional template privileged mode
Oct 24, 2024
76dc17b
chore: update readme for privileged
Oct 24, 2024
ae4f0a8
chore: add bridged network annotation
Oct 30, 2024
9a9d2b2
chore: add cluster networking to iipod
Oct 30, 2024
26d5285
chore: update pod dns
Nov 3, 2024
70df366
chore: use Cilium route for Docker
Nov 3, 2024
8774283
Merge pull request #24 from ii/qol-update-202410181012
BobyMCbobs Nov 3, 2024
8d42151
chore: remove sbom step in build
Nov 4, 2024
c40b565
chore: update .terraform.lock.hcl
Nov 4, 2024
f7fc5fa
chore: add xclip
heyste Nov 4, 2024
fcbd529
Merge pull request #26 from ii/add-xclip
heyste Nov 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: build
on:
push: {}
release:
types: [published]
workflow_dispatch: {}
permissions:
contents: read
packages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Maximize build space
uses: ublue-os/remove-unwanted-software@517622d6452028f266b7ba4cc9a123b5f58a6b53 # v7
- uses: sigstore/cosign-installer@4959ce089c160fddf62f7b42464195ba1a56d382 # v3.6.0
- uses: imjasonh/setup-crane@31b88efe9de28ae0ffa220711af4b60be9435f6e # v0.4
- name: Set up QEMU
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8026d2bc3645ea78b0d2544766a1225eb5691f89 # v3.7.0
- name: Login to ghcr.io
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- id: run-info
name: collect job run info
env:
GHCR_DOCKER_REPO: ghcr.io/${{ github.repository }}
run: |
TAGS="latest,$(git show -s --format=%cd --date=format:'%Y.%m.%d.%H%M')"
REGISTRY="${GHCR_DOCKER_REPO,,}"
[ -z "$REGISTRY_OVERRIDE" ] || REGISTRY="$REGISTRY_OVERRIDE"
IMAGES_WITH_TAGS=""
for TAG in $(echo $TAGS | tr ',' ' '); do
NEW_TAG="$REGISTRY:$TAG"
if [ -n "$IMAGES_WITH_TAGS" ]; then
IMAGES_WITH_TAGS="$NEW_TAG,$IMAGES_WITH_TAGS"
else
IMAGES_WITH_TAGS="$NEW_TAG"
fi
done
echo "image=$REGISTRY" >> $GITHUB_OUTPUT
echo "images-with-tags=$IMAGES_WITH_TAGS" >> $GITHUB_OUTPUT
- name: Build and push
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
id: build
with:
push: true
tags: ${{ steps.run-info.outputs.images-with-tags }}
context: build
platforms: linux/amd64
file: build/Dockerfile
labels: |
org.opencontainers.image.name=${{ steps.run-info.outputs.image }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.source=${{ github.repositoryUrl }}
- name: get-digests
id: get-digests
env:
DESTINATION: ${{ steps.run-info.outputs.image }}@${{ steps.build.outputs.digest }}
run: |
DESTINATION_DIGEST="$(crane digest "${DESTINATION}" || true)"
(
echo "DESTINATION_DIGEST"
echo "${DESTINATION_DIGEST}"
) | column -t
echo "destination=${DESTINATION_DIGEST}" >> $GITHUB_OUTPUT
- name: Sign image
env:
COSIGN_YES: "true"
run: |
cosign sign ${{ steps.run-info.outputs.image }}@${{ steps.get-digests.outputs.destination }} -y --recursive
- name: image
id: image
run: |
echo "image=${{ steps.run-info.outputs.image }}@${{ steps.get-digests.outputs.destination }}" >> $GITHUB_OUTPUT
- name: image result
id: result
run: |
echo "Build, pushed and signed: ${{ steps.image.outputs.image }}"
210 changes: 99 additions & 111 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion README.md

This file was deleted.

Loading