Skip to content

Commit 4e82061

Browse files
committed
move testing.plone.org to testing-stable.plone.org, except for the github environment name
1 parent c5dca6d commit 4e82061

5 files changed

Lines changed: 27 additions & 27 deletions

File tree

.github/workflows/backend-testing.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Backend testing.plone.org CI and Deploy
1+
name: Backend testing-stable.plone.org CI and Deploy
22

33
on:
44
push:
@@ -145,12 +145,12 @@ jobs:
145145
runs-on: ubuntu-latest
146146
environment:
147147
name: testing.plone.org
148-
url: https://testing.plone.org
148+
url: https://testing-stable.plone.org
149149
steps:
150150
- name: Checkout
151151
uses: actions/checkout@v4
152152

153-
- name: Deploy to testing.plone.org
153+
- name: Deploy to testing-stabls.plone.org
154154
uses: kitconcept/docker-stack-deploy@v1.4.0
155155
with:
156156
registry: "ghcr.io"
@@ -160,8 +160,8 @@ jobs:
160160
remote_port: ${{ vars.DEPLOY_PORT }}
161161
remote_user: ${{ vars.DEPLOY_USER }}
162162
remote_private_key: ${{ secrets.DEPLOY_SSH }}
163-
stack_file: "devops/stacks/testing.plone.org.yml"
164-
stack_name: "testing-plone-org"
163+
stack_file: "devops/stacks/testing-stable.plone.org.yml"
164+
stack_name: "testing-stable-plone-org"
165165
env_file: |
166166
STACK_NAME=testing-plone-org
167167
DB_HOST=${{ vars.DB_HOST }}

.github/workflows/frontend-testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Frontend testing.plone.org CI and deploy
1+
name: Frontend testing-stable.plone.org CI and deploy
22

33
on:
44
workflow_dispatch:
@@ -139,12 +139,12 @@ jobs:
139139
runs-on: ubuntu-latest
140140
environment:
141141
name: testing.plone.org
142-
url: https://testing.plone.org
142+
url: https://testing-stabls.plone.org
143143
steps:
144144
- name: Checkout
145145
uses: actions/checkout@v4
146146

147-
- name: Deploy to testing.plone.org
147+
- name: Deploy to testing-stable.plone.org
148148
uses: kitconcept/docker-stack-deploy@v1.4.0
149149
with:
150150
registry: "ghcr.io"
@@ -154,10 +154,10 @@ jobs:
154154
remote_port: ${{ vars.DEPLOY_PORT }}
155155
remote_user: ${{ vars.DEPLOY_USER }}
156156
remote_private_key: ${{ secrets.DEPLOY_SSH }}
157-
stack_file: "devops/stacks/testing.plone.org.yml"
157+
stack_file: "devops/stacks/testing-stable.plone.org.yml"
158158
stack_name: testing-plone-org
159159
env_file: |
160-
STACK_NAME=testing-plone-org
160+
STACK_NAME=testing-stable-plone-org
161161
DB_HOST=${{ vars.DB_HOST }}
162162
DB_NAME=${{ vars.DB_NAME }}
163163
DB_USER=${{ vars.DB_USER }}

.github/workflows/redeploy-testing.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Deploy latest image tags to testing.plone.org
1+
name: Deploy latest image tags to testing-stable.plone.org
22

33
on:
44
workflow_dispatch:
@@ -10,13 +10,13 @@ jobs:
1010
concurrency: deploy_testing
1111
runs-on: ubuntu-latest
1212
environment:
13-
name: testing.plone.org
14-
url: https://testing.plone.org
13+
name: testing-stable.plone.org
14+
url: https://testing-stable.plone.org
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
1818

19-
- name: Deploy 'latest' image tags to testing.plone.org
19+
- name: Deploy 'latest' image tags to testing-stable.plone.org
2020
uses: kitconcept/docker-stack-deploy@v1.4.0
2121
with:
2222
registry: "ghcr.io"
@@ -26,10 +26,10 @@ jobs:
2626
remote_port: ${{ vars.DEPLOY_PORT }}
2727
remote_user: ${{ vars.DEPLOY_USER }}
2828
remote_private_key: ${{ secrets.DEPLOY_SSH }}
29-
stack_file: "devops/stacks/testing.plone.org.yml"
30-
stack_name: "testing-plone-org"
29+
stack_file: "devops/stacks/testing-stable.plone.org.yml"
30+
stack_name: "testing-stable-plone-org"
3131
env_file: |
32-
STACK_NAME=testing-plone-org
32+
STACK_NAME=testing-stable-plone-org
3333
DB_HOST=${{ vars.DB_HOST }}
3434
DB_NAME=${{ vars.DB_NAME }}
3535
DB_USER=${{ vars.DB_USER }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Built with Cookiecutter Plone Starter](https://img.shields.io/badge/built%20with-Cookiecutter%20Plone%20Starter-0083be.svg?logo=cookiecutter)](https://github.com/collective/cookiecutter-plone-starter/)
44
[![Code analysis](https://github.com/plone/plone.org/actions/workflows/code-analysis.yml/badge.svg)](https://github.com/plone/plone.org/actions/workflows/code-analysis.yml)
5-
[![Backend testing.plone.org CI and Deploy](https://github.com/plone/plone.org/actions/workflows/backend-testing.yaml/badge.svg)](https://github.com/plone/plone.org/actions/workflows/backend-testing.yaml)
6-
[![Frontend testing.plone.org CI and deploy](https://github.com/plone/plone.org/actions/workflows/frontend-testing.yml/badge.svg)](https://github.com/plone/plone.org/actions/workflows/frontend-testing.yml)
5+
[![Backend testing-stable.plone.org CI and Deploy](https://github.com/plone/plone.org/actions/workflows/backend-testing.yaml/badge.svg)](https://github.com/plone/plone.org/actions/workflows/backend-testing.yaml)
6+
[![Frontend testing-stable.plone.org CI and deploy](https://github.com/plone/plone.org/actions/workflows/frontend-testing.yml/badge.svg)](https://github.com/plone/plone.org/actions/workflows/frontend-testing.yml)
77

88
The main destination for Plone
99

devops/stacks/testing.plone.org.yml renamed to devops/stacks/testing-stable.plone.org.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
# Services
2727
- traefik.http.services.testing_ploneorg-frontend.loadbalancer.server.port=3000
2828
# Routers
29-
- traefik.http.routers.testing_ploneorg-frontend.rule=Host(`testing.plone.org`)
29+
- traefik.http.routers.testing_ploneorg-frontend.rule=Host(`testing-stable.plone.org`)
3030
- traefik.http.routers.testing_ploneorg-frontend.entrypoints=https
3131
- traefik.http.routers.testing_ploneorg-frontend.tls=true
3232
- traefik.http.routers.testing_ploneorg-frontend.tls.certresolver=le
@@ -59,21 +59,21 @@ services:
5959
- traefik.http.middlewares.testing_ploneorg-backend-auth.basicauth.users=ploneorg:$$2y$$05$$QuAxsLqKl7ltm6Qv4wOOw./2pK5VeVSBSllAJbdb4dKnFxWhFFLze
6060
### backend ++api++ VHM
6161
- "traefik.http.middlewares.testing_ploneorg-vhm-cleanup.replacepathregex.regex=^/((\\+\\+api\\+\\+/){1,})($$|.*)"
62-
- "traefik.http.middlewares.testing_ploneorg-vhm-cleanup.replacepathregex.replacement=/VirtualHostBase/https/testing.plone.org/Plone/++api++/VirtualHostRoot/$$3"
62+
- "traefik.http.middlewares.testing_ploneorg-vhm-cleanup.replacepathregex.replacement=/VirtualHostBase/https/testing-stable.plone.org/Plone/++api++/VirtualHostRoot/$$3"
6363
- "traefik.http.middlewares.testing_ploneorg-vhm.replacepathregex.regex=^/\\+\\+api\\+\\+($$|/.*)"
64-
- "traefik.http.middlewares.testing_ploneorg-vhm.replacepathregex.replacement=/VirtualHostBase/https/testing.plone.org/Plone/++api++/VirtualHostRoot/$$1"
64+
- "traefik.http.middlewares.testing_ploneorg-vhm.replacepathregex.replacement=/VirtualHostBase/https/testing-stable.plone.org/Plone/++api++/VirtualHostRoot/$$1"
6565
### backend /ClassicUI VHM
6666
- "traefik.http.middlewares.testing_ploneorg-vhm-classic.replacepathregex.regex=^/ClassicUI($$|/.*)"
67-
- "traefik.http.middlewares.testing_ploneorg-vhm-classic.replacepathregex.replacement=/VirtualHostBase/https/testing.plone.org/Plone/VirtualHostRoot/_vh_ClassicUI/$$1"
67+
- "traefik.http.middlewares.testing_ploneorg-vhm-classic.replacepathregex.replacement=/VirtualHostBase/https/testing-stable.plone.org/Plone/VirtualHostRoot/_vh_ClassicUI/$$1"
6868
# Routers
69-
## testing.plone.org ++api++
70-
- traefik.http.routers.testing_ploneorg-backend.rule=Host(`testing.plone.org`) && (PathPrefix(`/++api++`))
69+
## testing-stable.plone.org ++api++
70+
- traefik.http.routers.testing_ploneorg-backend.rule=Host(`testing-stable.plone.org`) && (PathPrefix(`/++api++`))
7171
- traefik.http.routers.testing_ploneorg-backend.entrypoints=https
7272
- traefik.http.routers.testing_ploneorg-backend.tls=true
7373
- traefik.http.routers.testing_ploneorg-backend.service=testing_ploneorg-backend
7474
- traefik.http.routers.testing_ploneorg-backend.middlewares=gzip,testing_ploneorg-vhm-cleanup,testing_ploneorg-vhm
75-
### testing.plone.org /ClassicUI - protected with basic auth (prevent SEOs from crawl it)
76-
- traefik.http.routers.testing_ploneorg-classicui.rule=Host(`testing.plone.org`) && (PathPrefix(`/ClassicUI`))
75+
### testing-stable.plone.org /ClassicUI - protected with basic auth (prevent SEOs from crawl it)
76+
- traefik.http.routers.testing_ploneorg-classicui.rule=Host(`testing-stable.plone.org`) && (PathPrefix(`/ClassicUI`))
7777
- traefik.http.routers.testing_ploneorg-classicui.entrypoints=https
7878
- traefik.http.routers.testing_ploneorg-classicui.tls=true
7979
- traefik.http.routers.testing_ploneorg-classicui.service=testing_ploneorg-backend

0 commit comments

Comments
 (0)