If the custom container registry requires authentication, create a pull secret with the name quay-pull-secret. FEP Operator will this this pull secret to download container image.
kind:Secret
apiVersion:v1
metadata:
name:quay-pull-secret
namespace:fep-container-ct
data:
.dockerconfigjson:~>-
xxxxxxbCI6ICIiCiAgICB9CiAgfQp9
type:kubernetes.io/dockerconfigjson
Create FEP Cluster CR
apiVersion: fep.fujitsu.io/v2
kind: FEPCluster
metadata:
name: sqlite-fdw
namespace: fep-container-ct
spec:
fep:
forceSsl: true
… …
image:
image: 'my.registry/my-repo/fep-18-server-sqlite_fdw:ubi9-18-1.0'
… …
instances: 1
Deploy FEPCluster
oc apply -f sqlite_fdw.yaml
Create extension
postgres# CREATE EXTENSION sqlite_fdw; CREATE EXTENSION postgres=#