File tree Expand file tree Collapse file tree 6 files changed +0
-14
lines changed Expand file tree Collapse file tree 6 files changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ inputs:
2828 label :
2929 description : Label for test
3030 required : false
31- azure-ad-secret :
32- description : Azure Active Directory secret for JWKs
33- required : false
3431 registry-token :
3532 description : JWT token for accessing container registry
3633 required : false
@@ -103,7 +100,6 @@ runs:
103100 --self-contained-html \
104101 --durations=10 \
105102 --show-ic-logs=yes \
106- --ad-secret=${{ inputs.azure-ad-secret }} \
107103 --plus-jwt=${{ inputs.plus-jwt }} \
108104 -m ${{ inputs.marker != '' && inputs.marker || '""' }}
109105 working-directory : ./tests
Original file line number Diff line number Diff line change @@ -288,7 +288,6 @@ jobs:
288288 marker : ${{ matrix.images.marker != '' && matrix.images.marker || '' }}
289289 k8s-version : ${{ matrix.k8s }}
290290 label : ${{ matrix.images.label }}
291- azure-ad-secret : ${{ secrets.AZURE_AD_AUTOMATION }}
292291 registry-token : ${{ steps.auth.outputs.access_token }}
293292 test-image : " gcr.io/f5-gcs-7899-ptg-ingrss-ctlr/dev/test-runner:${{ hashFiles('./tests/requirements.txt', './tests/Dockerfile') || 'latest' }}"
294293 plus-jwt : ${{ secrets.PLUS_JWT }}
Original file line number Diff line number Diff line change @@ -165,7 +165,6 @@ jobs:
165165 marker : ${{ inputs.marker != '' && inputs.marker || '' }}
166166 label : ${{ inputs.label }}
167167 k8s-version : ${{ inputs.k8s-version }}
168- azure-ad-secret : ${{ secrets.AZURE_AD_AUTOMATION }}
169168 registry-token : ${{ steps.auth.outputs.access_token }}
170169 test-image : " gcr.io/f5-gcs-7899-ptg-ingrss-ctlr/dev/test-runner:${{ hashFiles('./tests/requirements.txt', './tests/Dockerfile') || 'latest' }}"
171170 plus-jwt : ${{ secrets.PLUS_JWT }}
Original file line number Diff line number Diff line change @@ -120,7 +120,6 @@ jobs:
120120 marker : ${{ inputs.marker }}
121121 label : " ${{ inputs.image }} regression"
122122 k8s-version : ${{ inputs.k8s-version }}
123- azure-ad-secret : ${{ secrets.AZURE_AD_AUTOMATION }}
124123 registry-token : ${{ steps.auth.outputs.access_token }}
125124 test-image : " gcr.io/f5-gcs-7899-ptg-ingrss-ctlr/dev/test-runner:${{ hashFiles('./tests/requirements.txt', './tests/Dockerfile') }}"
126125 plus-jwt : ${{ secrets.PLUS_JWT }}
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ K8S_CLUSTER_NAME ?= local ## The name used when creating/using a Kin
2222# renovate: datasource=docker depName=kindest/node
2323K8S_CLUSTER_VERSION ?= v1.34.0
2424K8S_TIMEOUT ?= 75s # # The timeout used when creating a Kind Kubernetes cluster
25- AD_SECRET ?=
2625PLUS_JWT ?=
2726PYTEST_ARGS ?=
2827ifeq (${REGISTRY},)
Original file line number Diff line number Diff line change @@ -120,12 +120,6 @@ def pytest_addoption(parser) -> None:
120120 default = NS_COUNT ,
121121 help = "Number for namespaces to deploy for use in test_multiple_ns_perf.py" ,
122122 )
123- parser .addoption (
124- "--ad-secret" ,
125- action = "store" ,
126- default = os .environ .get ("AZURE_AD_AUTOMATION" ),
127- help = "Azure active directory secret for JWKs" ,
128- )
129123 parser .addoption (
130124 "--num" ,
131125 action = "store" ,
You can’t perform that action at this time.
0 commit comments