-
Notifications
You must be signed in to change notification settings - Fork 0
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 #16 from developmentseed/feature/general-polder-de…
…ployment Add general polder deployment
- Loading branch information
Showing
7 changed files
with
138 additions
and
14 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 |
---|---|---|
|
@@ -13,6 +13,9 @@ on: | |
- '.github/workflows/check_charts.yaml' | ||
pull_request: | ||
|
||
env: | ||
PGO_CHART_VERSION: 5.7.0 | ||
|
||
jobs: | ||
lint-test: | ||
runs-on: ubuntu-latest | ||
|
@@ -25,7 +28,7 @@ jobs: | |
- name: Check Version | ||
run: | | ||
current_version=$(grep '^version=' pyproject.toml | cut -f2 -d= | tr -d ' ' | tr -d '"') | ||
app_version=$(grep 'appVersion:' deployment/helm/Chart.yaml | cut -f2 -d: | tr -d ' ' | tr -d '"') | ||
app_version=$(grep 'appVersion:' deployment/helm/polder/Chart.yaml | cut -f2 -d: | tr -d ' ' | tr -d '"') | ||
if [[ "$current_version" != "$app_version" ]]; then | ||
echo "❌ current version from pyproject.toml ($current_version) and appVersion from Chart.yaml ($app_version) differs"; | ||
exit 1; | ||
|
@@ -36,6 +39,10 @@ jobs: | |
with: | ||
version: v3.9.2 | ||
|
||
# Add DevSeed helm repository | ||
- name: Add DevSeed helm repository | ||
run: helm repo add devseed https://devseed.com/eoapi-k8s/ | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.7 | ||
|
@@ -46,20 +53,20 @@ jobs: | |
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
changed=$(ct list-changed --chart-dirs deployment --target-branch ${{ github.event.repository.default_branch }}) | ||
changed=$(ct list-changed --chart-dirs deployment/helm --target-branch ${{ github.event.repository.default_branch }}) | ||
if [[ -n "$changed" ]]; then | ||
echo "::set-output name=changed::true" | ||
fi | ||
- name: Run chart-testing (lint) | ||
run: ct lint --chart-dirs deployment --target-branch ${{ github.event.repository.default_branch }} | ||
run: ct lint --chart-dirs deployment/helm --target-branch ${{ github.event.repository.default_branch }} | ||
|
||
- name: Build container | ||
- name: Build webapp container | ||
uses: docker/build-push-action@v6 | ||
if: steps.list-changed.outputs.changed == 'true' | ||
with: | ||
platforms: linux/amd64 | ||
context: . | ||
context: webapp | ||
file: webapp/Dockerfile | ||
push: false | ||
tags: "polder:dev" | ||
|
@@ -68,10 +75,14 @@ jobs: | |
uses: helm/[email protected] | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
# Install postgres operator | ||
- name: Install postgres operator | ||
run: helm install --set disable_check_for_upgrades=true pgo oci://registry.developers.crunchydata.com/crunchydata/pgo --version ${PGO_CHART_VERSION} | ||
|
||
- name: Load container image in kind cluster | ||
run: kind load docker-image polder:dev --name chart-testing | ||
if: steps.list-changed.outputs.changed == 'true' | ||
|
||
- name: Run chart-testing (install) | ||
run: ct install --chart-dirs deployment/k8s | ||
if: steps.list-changed.outputs.changed == 'true' | ||
run: ct install --chart-dirs deployment/helm --target-branch ${{ github.event.repository.default_branch }} | ||
if: steps.list-changed.outputs.changed == 'true' |
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,7 +1,42 @@ | ||
.idea | ||
helm/Chart.lock | ||
.DS_STORE | ||
# Dependency directories | ||
node_modules/ | ||
|
||
# General files for the project | ||
pkg/* | ||
*.pyc | ||
bin/* | ||
.project | ||
/.bin | ||
/_test/secrets/*.json | ||
|
||
# OSX leaves these everywhere on SMB shares | ||
._* | ||
|
||
# OSX trash | ||
.DS_Store | ||
.DS_STORE | ||
|
||
# Dependency directories | ||
node_modules/ | ||
# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA | ||
.idea/ | ||
*.iml | ||
|
||
# Vscode files | ||
.vscode | ||
|
||
# Emacs save files | ||
*~ | ||
\#*\# | ||
.\#* | ||
|
||
# Vim-related files | ||
[._]*.s[a-w][a-z] | ||
[._]s[a-w][a-z] | ||
*.un~ | ||
Session.vim | ||
.netrwhist | ||
|
||
# Chart dependencies | ||
**/charts/*.tgz | ||
|
||
.history | ||
.venv/ |
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,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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 @@ | ||
dependencies: | ||
- name: eoapi | ||
repository: https://devseed.com/eoapi-k8s/ | ||
version: 0.5.0 | ||
- name: webapp-polder | ||
repository: file://../webapp-polder | ||
version: 0.1.0 | ||
digest: sha256:7d2fa7cbafd56b2614fd50464e710584eac65bf1b64a2b644e9457a3f162567d | ||
generated: "2024-11-04T14:12:53.307694627+01:00" |
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,32 @@ | ||
apiVersion: v2 | ||
name: polder | ||
description: Create a polder - Web AOI viewer - instance. | ||
|
||
type: application | ||
|
||
# This is the chart version. This version number should be incremented each time you make changes | ||
# to the chart and its templates, including the app version. | ||
# Versions are expected to follow Semantic Versioning (https://semver.org/) | ||
version: 0.1.0 | ||
|
||
# This is the version number of the application being deployed. This version number should be | ||
# incremented each time you make changes to the application. Versions are not expected to | ||
# follow Semantic Versioning. They should reflect the version the application is using. | ||
# It is recommended to use it with quotes. | ||
appVersion: "0.2.0" | ||
|
||
maintainers: | ||
- name: pantierra # Felix Delattre | ||
url: https://github.com/pantierra | ||
- name: emmanuelmathot # Emmanuel Mathot | ||
url: https://github.com/emmanuelmathot | ||
- name: ciaransweet # Ciaran Sweet | ||
url: https://github.com/ciaransweet | ||
|
||
dependencies: | ||
- name: eoapi | ||
version: 0.5.0 | ||
repository: "https://devseed.com/eoapi-k8s/" | ||
- name: webapp-polder | ||
version: 0.1.0 | ||
repository: file://../webapp-polder |
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,15 @@ | ||
# Default values for polder. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
|
||
# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ | ||
replicaCount: 1 | ||
|
||
# This is to override the chart name. | ||
nameOverride: "polder" | ||
fullnameOverride: "test-polder" | ||
|
||
# polder custom configuration | ||
mapboxToken: "" | ||
stacApi: "stac:8080" | ||
tilerApi: "raster:8080" |
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