Skip to content
Merged

3.0.0 #630

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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The application is being developed as an open source solution.

- .Net 7
- Node.JS v13.7.0 or newer
- PostgreSQL 10
- PostgreSQL 16

## Dependencies

Expand Down
4 changes: 2 additions & 2 deletions openshift/api-build-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ objects:
- apiVersion: v1
kind: ImageStream
metadata:
name: postgresql-10-rhel8
name: postgresql-16-rhel8
labels:
shared: "true"
spec:
Expand All @@ -39,7 +39,7 @@ objects:
- annotations: null
from:
kind: DockerImage
name: registry.redhat.io/rhel8/postgresql-10
name: registry.redhat.io/rhel8/postgresql-16:1-42.1741813436
name: "1"
referencePolicy:
type: Local
Expand Down
10 changes: 0 additions & 10 deletions openshift/api-deploy-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,6 @@ objects:
defaultMode: 420
name: api-appsettings-${ENV}
test: false
triggers:
- imageChangeParams:
automatic: true
containerNames:
- api
from:
kind: ImageStreamTag
name: ${NAME}:${VERSION}
type: ImageChange
- type: ConfigChange
- apiVersion: v1 #service: api
kind: Service
metadata:
Expand Down
10 changes: 0 additions & 10 deletions openshift/client-deploy-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,16 +74,6 @@ objects:
- name: APP_NAME
value: ${PROJECT_NAME}
test: false
triggers:
- imageChangeParams:
automatic: true
containerNames:
- client
from:
kind: ImageStreamTag
name: ${NAME}:${VERSION}
type: ImageChange
- type: ConfigChange
- apiVersion: v1
kind: Service
metadata:
Expand Down
10 changes: 0 additions & 10 deletions openshift/pdf-deploy-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,6 @@ objects:
path: "/"
port: 8080
test: false
triggers:
- imageChangeParams:
automatic: true
containerNames:
- pdf
from:
kind: ImageStreamTag
name: ${NAME}:${VERSION}
type: ImageChange
- type: ConfigChange
- apiVersion: v1 #service: pdf
kind: Service
metadata:
Expand Down
15 changes: 2 additions & 13 deletions openshift/postgresql-deploy-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,8 @@ objects:
volumes:
- name: "${NAME}-${ENV}-data"
persistentVolumeClaim:
claimName: ${NAME}-${ENV}-pvc
claimName: ${NAME}-${ENV}-psql16-pvc
test: false
triggers:
- type: ConfigChange
- imageChangeParams:
automatic: true
containerNames:
- ${NAME}-${ENV}
from:
kind: ImageStreamTag
name: ${IMAGE_STREAM_TAG}
namespace: e82e9a-tools
type: ImageChange
- kind: PersistentVolumeClaim
apiVersion: v1
metadata:
Expand Down Expand Up @@ -166,7 +155,7 @@ parameters:
- description: ImageStreamTag
displayName: ImageStreamTag
name: IMAGE_STREAM_TAG
value: "postgresql-10-rhel8:1"
value: "postgresql-16-rhel8:1"
- name: POSTGRESQL_DATABASE_NAME
displayName: PostgreSQL Database Name
description: The name of the PostgreSQL database.
Expand Down
Loading