Announcement

Collapse
No announcement yet.

Deploying on Kubernetes

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Deploying on Kubernetes

    Hello everyone,
    I hope I am not here completely off topic. I want to use phoronix-test-suit for a project I am working on. My goal is to use it on a kubernetes cluster. But somehow I cannot deploy it.

    Code:
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: test-suit
      labels:
        app: testsuit
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: testsuit
      template:
        metadata:
          labels:
            app: testsuit
        spec:
          containers:
          - name: testsuit
            image: phoronix/pts:latest
            ports:
            - containerPort: 6666​
    Am I trying to pull the wrong image? Or is it just not compatible for kubernetes?

  • #2
    I've never tested the PTS Docker container on Kubernetes so your mileage may vary.
    Michael Larabel
    https://www.michaellarabel.com/

    Comment

    Working...
    X