plesk / plesk/docker

After deploying plesk in Kubernetes Engine (GKE) It redirecting me to login page again and again

Open
#40 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Dockerfile
Stars
98
Forks
49
Avg merge
57m
Merged PRs (30d)
1

Description

 
---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: plesk-deployment
  labels:
    app: plesk
spec:
  replicas: 2
  selector:
    matchLabels:
      app: plesk
  template:
    metadata:
      labels:
        app: plesk
    spec:
      containers:
      - name: plesk
        image: gcr.io/gcp-tech/plesk:version1
        # imagePullPolicy: Always
        securityContext:
          privileged: true
        ports:
        - containerPort: 8880
        volumeMounts:
        - mountPath: /sys/fs/cgroup
          name: cgroup
          readOnly: true
        - mountPath: /tmp
          name: tmpfs
        - mountPath: /run
          name: tmpfs
        - mountPath: /run/lock
          name: tmpfs
      volumes:
      - name: tmpfs
        emptyDir: {}
      - name: cgroup
        hostPath:
            path: "/sys/fs/cgroup"
            type: Directory
 

---
apiVersion: v1
kind: Service
metadata:
  name: plesk-Service
spec:
  selector:
    app: plesk
  ports:
    - protocol: TCP
      port: 8880
      targetPort: 8880
  type: LoadBalancer```

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by applying the provided Kubernetes Deployment and Service manifest in GKE and reproducing the repeated login redirect. Inspect the Plesk container behavior and deployment configuration to identify what prevents a session from persisting; done means documenting a verified configuration change that allows login to remain active.

Written by the indexing model from the issue text.

Assessment

Tech stack
docker, gcp, kubernetes
Domain
cloud, infrastructure
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.