Skip to content

Commit f4957ac

Browse files
committed
Remove custom ports
1 parent db13801 commit f4957ac

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: npm run test:integration:basic
6565
env:
6666
VAULT_HOST: localhost
67-
VAULT_PORT: ${{ job.services.vault.ports[8200] }}
67+
VAULT_PORT: 8200
6868
CI: true
6969

7070
integrationEnterprise:
@@ -98,7 +98,7 @@ jobs:
9898
run: npm run test:integration:enterprise
9999
env:
100100
VAULT_HOST: localhost
101-
VAULT_PORT: ${{ job.services.vaultEnterprise.ports[8200] }}
101+
VAULT_PORT: 8200
102102
CI: true
103103

104104
e2e:
@@ -132,13 +132,13 @@ jobs:
132132
run: node ./integrationTests/e2e/setup.js
133133
env:
134134
VAULT_HOST: localhost
135-
VAULT_PORT: 8201
135+
VAULT_PORT: 8200
136136

137137
- name: Test Vault Action (default KV V2)
138138
uses: ./
139139
id: kv-secrets
140140
with:
141-
url: http://localhost:8201
141+
url: http://localhost:8200
142142
token: testtoken
143143
secrets: |
144144
test secret ;
@@ -148,7 +148,7 @@ jobs:
148148
- name: Test Vault Action (default KV V1)
149149
uses: ./
150150
with:
151-
url: http://localhost:8201
151+
url: http://localhost:8200
152152
token: testtoken
153153
path: my-secret
154154
kv-version: 1
@@ -160,7 +160,7 @@ jobs:
160160
- name: Test Vault Action (cubbyhole)
161161
uses: ./
162162
with:
163-
url: http://localhost:8201
163+
url: http://localhost:8200
164164
token: testtoken
165165
secrets: |
166166
/cubbyhole/test foo ;
@@ -202,7 +202,7 @@ jobs:
202202
run: node ./integrationTests/e2e-tls/setup.js
203203
env:
204204
VAULT_HOST: localhost
205-
VAULT_PORT: 8202
205+
VAULT_PORT: 8200
206206
VAULTCA: ${{ secrets.VAULTCA }}
207207
VAULT_CLIENT_CERT: ${{ secrets.VAULT_CLIENT_CERT }}
208208
VAULT_CLIENT_KEY: ${{ secrets.VAULT_CLIENT_KEY }}
@@ -211,7 +211,7 @@ jobs:
211211
uses: ./
212212
id: kv-secrets
213213
with:
214-
url: https://localhost:8202
214+
url: https://localhost:8200
215215
token: ${{ env.VAULT_TOKEN }}
216216
caCertificate: ${{ secrets.VAULTCA }}
217217
clientCertificate: ${{ secrets.VAULT_CLIENT_CERT }}
@@ -224,7 +224,7 @@ jobs:
224224
- name: Test Vault Action (default KV V1)
225225
uses: ./
226226
with:
227-
url: https://localhost:8202
227+
url: https://localhost:8200
228228
token: ${{ env.VAULT_TOKEN }}
229229
path: my-secret
230230
kv-version: 1
@@ -239,7 +239,7 @@ jobs:
239239
- name: Test Vault Action (cubbyhole)
240240
uses: ./
241241
with:
242-
url: https://localhost:8202
242+
url: https://localhost:8200
243243
token: ${{ env.VAULT_TOKEN }}
244244
secrets: |
245245
/cubbyhole/test foo ;

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ services:
1313
environment:
1414
VAULT_DEV_ROOT_TOKEN_ID: testtoken
1515
ports:
16-
- 8201:8200
16+
- 8200:8200
1717
privileged: true
1818
vault-tls:
1919
image: vault:latest
2020
hostname: vault-tls
2121
environment:
2222
VAULT_CAPATH: /etc/vault/ca.crt
2323
ports:
24-
- 8202:8200
24+
- 8200:8200
2525
privileged: true
2626
volumes:
2727
- ${PWD}/integrationTests/e2e-tls/configs:/etc/vault

0 commit comments

Comments
 (0)