diff --git a/files/drone/drone-ConfigMap.yaml b/files/drone/drone-ConfigMap.yaml index f2dda4c..2563a01 100644 --- a/files/drone/drone-ConfigMap.yaml +++ b/files/drone/drone-ConfigMap.yaml @@ -14,4 +14,5 @@ metadata: data: DRONE_SERVER_HOST: "drone.reslinger.net" DRONE_SERVER_PROTO: "https" + DRONE_SERVER_PORT: ":3000" DRONE_GITEA_SERVER: "https://gitea.reslinger.net" diff --git a/files/drone/drone-Deployment.yaml b/files/drone/drone-Deployment.yaml index 6e15bfc..97e4e45 100644 --- a/files/drone/drone-Deployment.yaml +++ b/files/drone/drone-Deployment.yaml @@ -30,7 +30,7 @@ spec: annotations: checksum/secrets: f04829730411ff67dd00ecc2a6f709ad9b067e2731b5164841e93bac8beb071e - prometheus.io/port: "80" + prometheus.io/port: "3000" prometheus.io/scrape: "true" spec: automountServiceAccountToken: false @@ -49,7 +49,7 @@ spec: imagePullPolicy: IfNotPresent ports: - name: http - containerPort: 80 + containerPort: 3000 protocol: TCP livenessProbe: httpGet: diff --git a/files/drone/drone-Service.yaml b/files/drone/drone-Service.yaml index 8cee074..b9ef1c4 100644 --- a/files/drone/drone-Service.yaml +++ b/files/drone/drone-Service.yaml @@ -14,7 +14,7 @@ metadata: spec: type: ClusterIP ports: - - port: 80 + - port: 3000 targetPort: http protocol: TCP name: http diff --git a/files/drone/drone-PersistentVolumeClaim.yaml b/templates/drone/drone-PersistentVolumeClaim.yaml similarity index 100% rename from files/drone/drone-PersistentVolumeClaim.yaml rename to templates/drone/drone-PersistentVolumeClaim.yaml