mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-11 16:17:39 +02:00
integration: fix default port for verify service (#2895)
This commit is contained in:
parent
d864aa64e5
commit
6ed3fa20bc
46 changed files with 47 additions and 47 deletions
|
@ -35,7 +35,7 @@ function(mode) {
|
|||
image: 'jwilder/dockerize:0.6.1',
|
||||
command: [
|
||||
'-wait',
|
||||
'http://' + name + ':80/',
|
||||
'http://' + name + ':8000/',
|
||||
'-timeout',
|
||||
'10m',
|
||||
],
|
||||
|
@ -49,7 +49,7 @@ function(mode) {
|
|||
{ name: 'http', port: 80, targetPort: 'http' },
|
||||
]),
|
||||
utils.KubernetesDeployment(name, image, null, [
|
||||
{ name: 'http', containerPort: 80 },
|
||||
{ name: 'http', containerPort: 8000 },
|
||||
]),
|
||||
],
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue