-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
558 additions
and
147 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,54 @@ | ||
name: Container Registry Test | ||
|
||
on: | ||
push: | ||
branches: '*' | ||
paths: | ||
- '!**' | ||
- '.gitea/workflows/triggers/test-container-registry' | ||
- '.gitea/workflows/test-container-registry.yml' | ||
- 'tests/container-registry/run-test.sh' | ||
schedule: # Note: coordinate with other tests to not overload runners at the same time of day | ||
- cron: '6 19 * * *' | ||
|
||
jobs: | ||
test: | ||
name: "Run contaier registry hosting test on kind/k8s" | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: "Clone project repository" | ||
uses: actions/checkout@v3 | ||
# At present the stock setup-python action fails on Linux/aarch64 | ||
# Conditional steps below workaroud this by using deadsnakes for that case only | ||
- name: "Install Python for ARM on Linux" | ||
if: ${{ runner.arch == 'arm64' && runner.os == 'Linux' }} | ||
uses: deadsnakes/[email protected] | ||
with: | ||
python-version: '3.8' | ||
- name: "Install Python cases other than ARM on Linux" | ||
if: ${{ ! (runner.arch == 'arm64' && runner.os == 'Linux') }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.8' | ||
- name: "Print Python version" | ||
run: python3 --version | ||
- name: "Install shiv" | ||
run: pip install shiv | ||
- name: "Generate build version file" | ||
run: ./scripts/create_build_tag_file.sh | ||
- name: "Build local shiv package" | ||
run: ./scripts/build_shiv_package.sh | ||
- name: "Check cgroups version" | ||
run: mount | grep cgroup | ||
- name: "Install kind" | ||
run: ./tests/scripts/install-kind.sh | ||
- name: "Install Kubectl" | ||
run: ./tests/scripts/install-kubectl.sh | ||
- name: "Install ed" # Only needed until we remove the need to edit the spec file | ||
run: apt update && apt install -y ed | ||
- name: "Run container registry deployment test" | ||
run: | | ||
source /opt/bash-utils/cgroup-helper.sh | ||
join_cgroup | ||
./tests/container-registry/run-test.sh | ||
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 @@ | ||
Change this file to trigger running the test-container-registry CI job |
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
13 changes: 13 additions & 0 deletions
13
stack_orchestrator/data/compose/docker-compose-container-registry.yml
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,13 @@ | ||
services: | ||
registry: | ||
image: registry:2.8 | ||
restart: always | ||
environment: | ||
REGISTRY_LOG_LEVEL: ${REGISTRY_LOG_LEVEL} | ||
volumes: | ||
- registry-data:/var/lib/registry | ||
ports: | ||
- "5000" | ||
|
||
volumes: | ||
registry-data: |
12 changes: 12 additions & 0 deletions
12
stack_orchestrator/data/compose/docker-compose-mars-v2.yml
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,12 @@ | ||
version: "3.2" | ||
|
||
services: | ||
mars: | ||
image: cerc/mars-v2:local | ||
restart: always | ||
ports: | ||
- "3000:3000" | ||
environment: | ||
- URL_OSMOSIS_REST=https://lcd-osmosis.blockapsis.com | ||
- URL_OSMOSIS_RPC=https://rpc-osmosis.blockapsis.com | ||
- WALLET_CONNECT_ID=0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x0x |
13 changes: 13 additions & 0 deletions
13
stack_orchestrator/data/compose/docker-compose-snowballtools-base-backend.yml
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,13 @@ | ||
services: | ||
snowballtools-base-backend: | ||
image: cerc/snowballtools-base-backend:local | ||
restart: always | ||
volumes: | ||
- data:/data | ||
- config:/config:ro | ||
ports: | ||
- 8000 | ||
|
||
volumes: | ||
data: | ||
config: |
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
4 changes: 4 additions & 0 deletions
4
stack_orchestrator/data/container-build/cerc-mars-v2/build.sh
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,4 @@ | ||
#!/usr/bin/env bash | ||
# Build the mars-v2 image | ||
source ${CERC_CONTAINER_BASE_DIR}/build-base.sh | ||
docker build -t cerc/mars-v2:local -f ${CERC_REPO_BASE_DIR}/mars-v2-frontend/Dockerfile ${build_command_args} ${CERC_REPO_BASE_DIR}/mars-v2-frontend |
6 changes: 6 additions & 0 deletions
6
stack_orchestrator/data/container-build/cerc-snowballtools-base-backend/Dockerfile
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 @@ | ||
FROM cerc/snowballtools-base-backend-base:local | ||
|
||
WORKDIR /app/packages/backend | ||
COPY run.sh . | ||
|
||
ENTRYPOINT ["./run.sh"] |
Oops, something went wrong.