IKO usable yaml sample for e.g. IAM
LS,
I'm trying to learn how to use the IKO for deploying solutions to Kubernetes. In my current project I'm trying to deploy the IAM onto a K8S context. Are there directly usable samples of the yaml file I need to use for that?
Product version: IRIS 2023.1
$ZV: N/A
Discussion (2)1
Comments
Here's an example I had put together in a different context. It sets up a single IRIS instance with a WebGateway and IAM. It also sets up TLS on the IAM instance.
apiVersion: intersystems.com/v1alpha1
kind: IrisCluster
metadata:
name: fhir-iam
spec:
imagePullSecrets:
- name: icr-secret
storageClassName: gp2
licenseKeySecret:
name: fhir-iris-key-secret
configSource:
name: fhir-iris-cpf
tls:
iam:
secret:
secretName: fhir-iam-tls
topology:
iam:
image: containers.intersystems.com/intersystems/iam:3.0.2.0-4
webgateway:
image: containers.intersystems.com/intersystems/webgateway:2022.1.0.209.0
type: apache
replicas: 1
applicationPaths:
- /csp/sys
- /myfhirserver
- /csp/healthshare
alternativeServers: LoadBalancing
data:
image: containers.intersystems.com/intersystems/irishealth:2022.1.0.209.0
serviceTemplate:
spec:
type: ClusterIPTanhs Bob, I will test this.