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

feat: Workshop consent form WIP #1557

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
1 change: 0 additions & 1 deletion .github/workflows/catalog-ui-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ jobs:
context: catalog/ui
file: catalog/ui/Dockerfile
build-args: |
STATUS_PAGE_ID=m7thn7y0z176
MONITOR_ENABLED=false
TRACKING_ENABLED=false
OPTIONAL_FLAGS=default
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/catalog-ui-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,14 @@ jobs:
"${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}:${VERSION%.*}"
"${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}:${VERSION}"
)
# Set IMAGE_TAGS output for use in next step
IMAGE_TAGS_PARTNERS=(
'${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}-partners:latest'
"${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}-partners:${VERSION%.*}"
"${{ secrets.REGISTRY_URI }}/${{ secrets.GPTE_REGISTRY_REPOSITORY }}/${{ env.IMAGE_NAME }}-partners:${VERSION}"
)
# Set IMAGE_TAGS and IMAGE_TAGS_PARTNERS output for use in next step
( IFS=$','; echo "::set-output name=IMAGE_TAGS::${IMAGE_TAGS[*]}" )
( IFS=$','; echo "::set-output name=IMAGE_TAGS_PARTNERS::${IMAGE_TAGS_PARTNERS[*]}" )
fi

- name: Set up buildx
Expand Down Expand Up @@ -69,7 +75,6 @@ jobs:
context: catalog/ui
file: catalog/ui/Dockerfile
build-args: |
STATUS_PAGE_ID=05mhm9ljgsqq
MONITOR_ENABLED=true
TRACKING_ENABLED=true
OPTIONAL_FLAGS=default
Expand Down
2 changes: 1 addition & 1 deletion admin/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SQLAlchemy-Utils==0.41.1
SQLAlchemy==2.0.21
asyncpg==0.28.0
fastapi==0.103.2
fastapi==0.109.1
greenlet==3.0.0
kubernetes-asyncio==28.2.0
psycopg2==2.9.9
Expand Down
6 changes: 3 additions & 3 deletions agnosticv-operator/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aiofiles==23.1.0
aiohttp==3.8.4
aiohttp==3.9.2
aioshutil==1.3
GitPython==3.1.37
jinja2==3.1.2
GitPython==3.1.41
jinja2==3.1.3
pytimeparse==1.1.8
4 changes: 2 additions & 2 deletions catalog-manager/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ serviceAccount:
resources:
limits:
cpu: "1"
memory: 256Mi
memory: 512Mi
requests:
cpu: 100m
memory: 256Mi
memory: 368Mi

nodeSelector: {}

Expand Down
2 changes: 1 addition & 1 deletion catalog-manager/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
aiohttp==3.8.6
aiohttp==3.9.2
psycopg2==2.9.5
retrying==1.3.4
6 changes: 3 additions & 3 deletions catalog/api/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ pyasn1-modules==0.2.8
pycparser==2.20
python-dateutil==2.8.1
PyYAML==5.4.1
redis==3.5.3
requests==2.25.1
redis==4.4.4
requests==2.31.0
requests-oauthlib==1.3.0
requestsexceptions==1.4.0
retrying==1.3.3
rsa==4.7.2
simple-salesforce==1.11.4
six==1.15.0
stevedore==3.3.0
urllib3==1.26.5
urllib3==1.26.18
websocket-client==0.58.0
Werkzeug==1.0.1
6 changes: 3 additions & 3 deletions catalog/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace:
name:

# Interface name to filter which catalog namespaces to present to the user
#interfaceName:
interfaceName:

api:
name: # default use chart name + '-api'
Expand All @@ -15,7 +15,7 @@ api:
threads: 1
image:
#override:
tag: v0.12.5
tag: v0.12.7
repository: quay.io/redhat-gpte/babylon-catalog-api
pullPolicy: IfNotPresent
imagePullSecrets: []
Expand All @@ -34,7 +34,7 @@ ui:
name: # default use chart name + '-ui'
image:
#override:
tag: v0.30.15
tag: v0.30.25
repository: quay.io/redhat-gpte/babylon-catalog-ui
pullPolicy: IfNotPresent
replicaCount: 1
Expand Down
2 changes: 1 addition & 1 deletion catalog/ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN find ./previous -type f ! -newer ./timestamp -exec rm {} \;
FROM registry.redhat.io/rhel9/nodejs-16-minimal:latest AS builder
USER root
WORKDIR /build
ARG STATUS_PAGE_ID

ARG MONITOR_ENABLED
ARG TRACKING_ENABLED
ARG OPTIONAL_FLAGS
Expand Down
Loading
Loading