Start a new topic
Answered

Issue in Deploying Semarchy 5.2 on EKS

Hi,  

      I am trying to deploy Semarchy 5.2 on EKS, but I am getting Imagepullbackoff error.

      This is the image name I am providing to the pod " semarchy/xdm:5.2 "

 


Best Answer

Hello,

xDM 5.2 image is not available on Docker, only 5.3.x is. If you try to deploy with the latest version it should work.


 

  apiVersion: apps/v1

  kind: Deployment

  metadata:

    name: semarchy-appserver-active

    labels:

      app: semarchy-appserver-active

  spec:

    replicas: 1

    selector:

      matchLabels:

        app: semarchy-appserver-active

    template:

      metadata:

        labels:

          app: semarchy-appserver-active

      spec:

        containers:

          - image: semarchy/xdm:5.2

            name: semarchy-appserver-active

            resources:

              requests:

                memory: "4Gi"

              limits:

                memory: "5Gi"

            envFrom:

              - configMapRef:

                  name: semarchy-config

            ports:

              - containerPort: 8080

        restartPolicy: Always

---

apiVersion: v1

kind: Service

metadata:

  name: semarchy-appserver-active

  labels:

    app: semarchy-appserver-active

spec:

  ports:

    - port: 8080

  selector:

    app: semarchy-appserver-active



this is the semarchy-appserver-active.yaml that i am using.

Answer

Hello,

xDM 5.2 image is not available on Docker, only 5.3.x is. If you try to deploy with the latest version it should work.


1 person likes this
Login to post a comment