Skip to content

Commit

Permalink
Fix an issue with mistakenly added Bearer auth in addition to Basic auth
Browse files Browse the repository at this point in the history
  • Loading branch information
nolar committed Nov 19, 2019
1 parent ba2eaec commit e332020
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion kopf/utilities/piggybacking.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ def login_via_pykube(
insecure=config.cluster.get('insecure-skip-tls-verify'),
username=config.user.get('username'),
password=config.user.get('password'),
scheme='Bearer',
token=config.user.get('token') or provider_token,
certificate_path=cert.filename() if cert else None, # can be a temporary file
private_key_path=pkey.filename() if pkey else None, # can be a temporary file
Expand Down

0 comments on commit e332020

Please sign in to comment.