Skip to content

Commit 6e414a2

Browse files
committed
Merge branch 'chore/vault-docker' of github.com:nginx/kubernetes-ingress into chore/vault-docker
2 parents ba13ff9 + 7d885ad commit 6e414a2

File tree

6 files changed

+0
-14
lines changed

6 files changed

+0
-14
lines changed

.github/actions/smoke-tests/action.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/regression.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 }}

.github/workflows/setup-smoke.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 }}

.github/workflows/single-image-regression.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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 }}

tests/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
2323
K8S_CLUSTER_VERSION ?= v1.34.0
2424
K8S_TIMEOUT ?= 75s ## The timeout used when creating a Kind Kubernetes cluster
25-
AD_SECRET ?=
2625
PLUS_JWT ?=
2726
PYTEST_ARGS ?=
2827
ifeq (${REGISTRY},)

tests/conftest.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)