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

CFFDRS py - Use github #3928

Merged
merged 7 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
shell: bash
run: |
oc login "${{ secrets.OPENSHIFT_CLUSTER }}" --token="${{ secrets.OC4_TOOL_TOKEN }}"
GIT_BRANCH=${GITHUB_HEAD_REF} MODULE_NAME=web DOCKER_FILE=Dockerfile.web PATH_BC=openshift/templates/build.web.bc.yaml SENTRY_AUTH_TOKEN="${{ secrets.SENTRY_AUTH_TOKEN }}" ARTIFACTORY_SVCACCT_TOKEN="${{ secrets.ARTIFACTORY_SVCACCT_TOKEN}}" bash openshift/scripts/oc_build.sh ${SUFFIX} apply
GIT_BRANCH=${GITHUB_HEAD_REF} MODULE_NAME=web DOCKER_FILE=Dockerfile.web PATH_BC=openshift/templates/build.web.bc.yaml SENTRY_AUTH_TOKEN="${{ secrets.SENTRY_AUTH_TOKEN }}" bash openshift/scripts/oc_build.sh ${SUFFIX} apply

build-api-image:
name: Build API Image
Expand All @@ -61,7 +61,7 @@ jobs:
shell: bash
run: |
oc login "${{ secrets.OPENSHIFT_CLUSTER }}" --token="${{ secrets.OC4_TOOL_TOKEN }}"
GIT_BRANCH=${GITHUB_HEAD_REF} MODULE_NAME=api ARTIFACTORY_PYPI_USERNAME=${{ secrets.ARTIFACTORY_PYPI_USERNAME }} ARTIFACTORY_PYPI_PASSWORD=${{ secrets.ARTIFACTORY_PYPI_PASSWORD }} bash openshift/scripts/oc_build.sh ${SUFFIX} apply
GIT_BRANCH=${GITHUB_HEAD_REF} MODULE_NAME=api bash openshift/scripts/oc_build.sh ${SUFFIX} apply
# TODO: Delete once pmtiles has run for some time
# build-tileserv-image:
# name: Build tileserv Image
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ jobs:
if: steps.cache-venv.outputs.cache-hit != 'true'
working-directory: ./api
run: |
poetry config http-basic.psu ${{ secrets.ARTIFACTORY_PYPI_USERNAME }} ${{ secrets.ARTIFACTORY_PYPI_PASSWORD }}
poetry run python -m pip install --upgrade pip
poetry install
poetry run python -m pip install gdal==$(gdal-config --version)
Expand Down Expand Up @@ -139,7 +138,6 @@ jobs:
if: steps.cache-venv.outputs.cache-hit != 'true'
working-directory: ./api
run: |
poetry config http-basic.psu ${{ secrets.ARTIFACTORY_PYPI_USERNAME }} ${{ secrets.ARTIFACTORY_PYPI_PASSWORD }}
poetry run python -m pip install --upgrade pip
poetry install
poetry run python -m pip install gdal==$(gdal-config --version)
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/post_merge_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ jobs:
with:
path: ~/work/wps/wps/api/.venv
key: ${{ runner.os }}-venv-poetry-1.6.1-${{ hashFiles('**/poetry.lock') }}
- name: Configure artifactory creds for poetry
working-directory: ./api
run: poetry config http-basic.psu ${{ secrets.ARTIFACTORY_PYPI_USERNAME }} ${{ secrets.ARTIFACTORY_PYPI_PASSWORD }}
- name: Install python dependencies using poetry (api)
if: steps.cache-venv.outputs.cache-hit != 'true'
working-directory: ./api
Expand Down Expand Up @@ -138,9 +135,6 @@ jobs:
with:
path: ~/work/wps/wps/api/.venv
key: ${{ runner.os }}-venv-poetry-1.6.1-${{ hashFiles('**/poetry.lock') }}
- name: Configure artifactory creds for poetry
working-directory: ./api
run: poetry config http-basic.psu ${{ secrets.ARTIFACTORY_PYPI_USERNAME }} ${{ secrets.ARTIFACTORY_PYPI_PASSWORD }}
- name: Install python dependencies using poetry (api)
if: steps.cache-venv.outputs.cache-hit != 'true'
working-directory: ./api
Expand Down Expand Up @@ -206,9 +200,6 @@ jobs:
run: corepack enable
- name: use new yarn
run: yarn set version berry
- name: Setup yarn for scoped artifactory packages
working-directory: ./web
run: yarn config set npmScopes.psu.npmRegistryServer https://artifacts.developer.gov.bc.ca/artifactory/api/npm/pe1e-psu-npm-local/ && yarn config set npmScopes.psu.npmAlwaysAuth true && yarn config set npmScopes.psu.npmAuthToken ${{ secrets.ARTIFACTORY_SVCACCT_TOKEN }}
- name: Install node dependencies (web)
working-directory: ./web
if: steps.yarn-cache.outputs.cache-hit != 'true'
Expand Down
8 changes: 1 addition & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ ARG DOCKER_IMAGE=image-registry.openshift-image-registry.svc:5000/e1e498-tools/w
# To build locally, point to a local base image you've already built (see openshift/wps-api-base)
# e.g. : docker build --build-arg DOCKER_IMAGE=wps-api-base:my-tag .

# Stage 1: Install Python packages, including internally published cffdrs. Installation from artifactory
# requires a username/password which we don't want in our final image, so we use a multi-stage build.
# Stage 1: Install Python packages
FROM ${DOCKER_IMAGE} AS builder

# We don't want to run our app as root, so we define a worker user.
Expand All @@ -29,11 +28,6 @@ RUN python -m pip install --upgrade pip
# Copy poetry files.
COPY --chown=$USERNAME:$USERNAME ./api/pyproject.toml ./api/poetry.lock /app/

ARG ARTIFACTORY_PYPI_USERNAME
ARG ARTIFACTORY_PYPI_PASSWORD

RUN poetry config http-basic.psu "$ARTIFACTORY_PYPI_USERNAME" "$ARTIFACTORY_PYPI_PASSWORD"

# Install dependencies.
RUN poetry install --without dev
# Get a python binding for gdal that matches the version of gdal we have installed.
Expand Down
17 changes: 8 additions & 9 deletions api/poetry.lock

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

6 changes: 2 additions & 4 deletions api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ scikit-learn = "^1.1.3"
httpx = "^0.27.0"
orjson = "^3.9.0"
greenlet = "^3.0.0"
sentry-sdk = {extras = ["fastapi"], version = "^2.0.1"}
sentry-sdk = { extras = ["fastapi"], version = "^2.0.1" }
numba = "^0.59.1"
cffdrs = {version = "^0.1.1", source = "psu"}
cffdrs = { git = "https://github.com/cffdrs/cffdrs_py.git" }
conbrad marked this conversation as resolved.
Show resolved Hide resolved
geopandas = "^1.0.1"
shapely = "^2.0.5"

Expand All @@ -68,7 +68,6 @@ ruff = "^0.4.0"

[[tool.poetry.source]]
name = "psu"
url = "https://artifacts.developer.gov.bc.ca/artifactory/api/pypi/pe1e-gen-python-local/simple"
priority = "supplemental"

[build-system]
Expand Down Expand Up @@ -105,4 +104,3 @@ per-file-ignores = { "alembic/versions/00df3c7b5cba_rethink_classification.py" =
] }
line-length = 185
ignore = ["E712", "F401"]

3 changes: 0 additions & 3 deletions openshift/scripts/oc_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ OC_PROCESS="oc -n ${PROJ_TOOLS} process -f ${PATH_BC} \
-p SUFFIX=${SUFFIX} \
-p GIT_BRANCH=${GIT_BRANCH} \
${SENTRY_AUTH_TOKEN:+ "-p SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN}"} \
${ARTIFACTORY_SVCACCT_TOKEN:+ "-p ARTIFACTORY_SVCACCT_TOKEN=${ARTIFACTORY_SVCACCT_TOKEN}"} \
${ARTIFACTORY_PYPI_USERNAME:+ "-p ARTIFACTORY_PYPI_USERNAME=${ARTIFACTORY_PYPI_USERNAME}"} \
${ARTIFACTORY_PYPI_PASSWORD:+ "-p ARTIFACTORY_PYPI_PASSWORD=${ARTIFACTORY_PYPI_PASSWORD}"} \
${DOCKER_IMAGE:+ "-p DOCKER_IMAGE=${DOCKER_IMAGE}"} \
${DOCKER_FILE:+ "-p DOCKER_FILE=${DOCKER_FILE}"}"

Expand Down
13 changes: 0 additions & 13 deletions openshift/templates/build.bc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,6 @@ parameters:
description: Dockerfile to use
required: true
value: Dockerfile
- name: ARTIFACTORY_PYPI_USERNAME
description: Username for internal pypi artifactory instance
required: true
- name: ARTIFACTORY_PYPI_PASSWORD
description: Password for internal pypi artifactory instance
required: true
objects:
- apiVersion: v1
kind: ImageStream
Expand Down Expand Up @@ -86,12 +80,5 @@ objects:
contextDir: ./
strategy:
dockerStrategy:
buildArgs:
- name: "DOCKER_IMAGE"
value: "${{DOCKER_IMAGE}}"
- name: "ARTIFACTORY_PYPI_USERNAME"
value: "${{ARTIFACTORY_PYPI_USERNAME}}"
- name: "ARTIFACTORY_PYPI_PASSWORD"
value: "${{ARTIFACTORY_PYPI_PASSWORD}}"
dockerfilePath: ${DOCKER_FILE}
triggers: []
5 changes: 0 additions & 5 deletions openshift/templates/build.web.bc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ parameters:
- name: SENTRY_AUTH_TOKEN
description: Sentry auth token for uploading source maps
required: true
- name: ARTIFACTORY_SVCACCT_TOKEN
description: Arctifactory service account token
required: true
objects:
- apiVersion: v1
kind: ImageStream
Expand Down Expand Up @@ -85,7 +82,5 @@ objects:
env:
- name: "SENTRY_AUTH_TOKEN"
value: ${SENTRY_AUTH_TOKEN}
- name: "ARTIFACTORY_SVCACCT_TOKEN"
value: ${ARTIFACTORY_SVCACCT_TOKEN}
dockerfilePath: ${DOCKER_FILE}
triggers: []
Loading