mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 02:40:29 -07:00
fix: gcp_container_cluster for GKE 1.19+
Incorporating a fix for GKE 1.19+ (See #444). Inlined: Google has removed basic-auth method from within GKE starting version 1.19 This lead the output response of the backend API not to provide basic-auth data (username and password) anymore. The current implementation of gcp_container_cluster when generating the kubectl config file, always set basic-auth data w/o checking if there actually are available or explicitly provided even when the value are not set/provided from gcp_container_cluster. In addition, re-enabling some tests that #444 fixed. Co-authored-by: Xavier Lamien <laxathom@lxtnow.net>
This commit is contained in:
parent
dc67fb3e17
commit
d3a7287c37
4 changed files with 36 additions and 47 deletions
|
@ -259,6 +259,7 @@ options:
|
||||||
username:
|
username:
|
||||||
description:
|
description:
|
||||||
- The username to use for HTTP basic authentication to the master endpoint.
|
- The username to use for HTTP basic authentication to the master endpoint.
|
||||||
|
(unsupported with GKE >= 1.19).
|
||||||
required: false
|
required: false
|
||||||
type: str
|
type: str
|
||||||
password:
|
password:
|
||||||
|
@ -266,6 +267,7 @@ options:
|
||||||
- The password to use for HTTP basic authentication to the master endpoint.
|
- The password to use for HTTP basic authentication to the master endpoint.
|
||||||
Because the master endpoint is open to the Internet, you should create a
|
Because the master endpoint is open to the Internet, you should create a
|
||||||
strong password with a minimum of 16 characters.
|
strong password with a minimum of 16 characters.
|
||||||
|
(unsupported with GKE >= 1.19).
|
||||||
required: false
|
required: false
|
||||||
type: str
|
type: str
|
||||||
client_certificate_config:
|
client_certificate_config:
|
||||||
|
@ -711,9 +713,6 @@ EXAMPLES = '''
|
||||||
google.cloud.gcp_container_cluster:
|
google.cloud.gcp_container_cluster:
|
||||||
name: my-cluster
|
name: my-cluster
|
||||||
initial_node_count: 2
|
initial_node_count: 2
|
||||||
master_auth:
|
|
||||||
username: cluster_admin
|
|
||||||
password: my-secret-password
|
|
||||||
node_config:
|
node_config:
|
||||||
machine_type: n1-standard-4
|
machine_type: n1-standard-4
|
||||||
disk_size_gb: 500
|
disk_size_gb: 500
|
||||||
|
@ -930,6 +929,7 @@ masterAuth:
|
||||||
username:
|
username:
|
||||||
description:
|
description:
|
||||||
- The username to use for HTTP basic authentication to the master endpoint.
|
- The username to use for HTTP basic authentication to the master endpoint.
|
||||||
|
(unsupported with GKE >= 1.19).
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
password:
|
password:
|
||||||
|
@ -937,6 +937,7 @@ masterAuth:
|
||||||
- The password to use for HTTP basic authentication to the master endpoint.
|
- The password to use for HTTP basic authentication to the master endpoint.
|
||||||
Because the master endpoint is open to the Internet, you should create a strong
|
Because the master endpoint is open to the Internet, you should create a strong
|
||||||
password with a minimum of 16 characters.
|
password with a minimum of 16 characters.
|
||||||
|
(unsupported with GKE >= 1.19).
|
||||||
returned: success
|
returned: success
|
||||||
type: str
|
type: str
|
||||||
clientCertificateConfig:
|
clientCertificateConfig:
|
||||||
|
@ -1857,6 +1858,29 @@ class Kubectl(object):
|
||||||
if not context:
|
if not context:
|
||||||
context = self.module.params['name']
|
context = self.module.params['name']
|
||||||
|
|
||||||
|
user = {
|
||||||
|
'name': context,
|
||||||
|
'user': {
|
||||||
|
'auth-provider': {
|
||||||
|
'config': {
|
||||||
|
'access-token': token,
|
||||||
|
'cmd-args': 'config config-helper --format=json',
|
||||||
|
'cmd-path': '/usr/lib64/google-cloud-sdk/bin/gcloud',
|
||||||
|
'expiry-key': '{.credential.token_expiry}',
|
||||||
|
'token-key': '{.credential.access_token}',
|
||||||
|
},
|
||||||
|
'name': 'gcp',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
auth_keyword = self.fetch['masterAuth'].keys()
|
||||||
|
if 'username' in auth_keyword and 'password' in auth_keyword:
|
||||||
|
user['user']['auth-provider'].update({
|
||||||
|
'username': str(self.fetch['masterAuth']['username']),
|
||||||
|
'password': str(self.fetch['masterAuth']['password']),
|
||||||
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'apiVersion': 'v1',
|
'apiVersion': 'v1',
|
||||||
'clusters': [{'name': context, 'cluster': {'certificate-authority-data': str(self.fetch['masterAuth']['clusterCaCertificate'])}}],
|
'clusters': [{'name': context, 'cluster': {'certificate-authority-data': str(self.fetch['masterAuth']['clusterCaCertificate'])}}],
|
||||||
|
@ -1864,25 +1888,7 @@ class Kubectl(object):
|
||||||
'current-context': context,
|
'current-context': context,
|
||||||
'kind': 'Config',
|
'kind': 'Config',
|
||||||
'preferences': {},
|
'preferences': {},
|
||||||
'users': [
|
'users': [user],
|
||||||
{
|
|
||||||
'name': context,
|
|
||||||
'user': {
|
|
||||||
'auth-provider': {
|
|
||||||
'config': {
|
|
||||||
'access-token': token,
|
|
||||||
'cmd-args': 'config config-helper --format=json',
|
|
||||||
'cmd-path': '/usr/lib64/google-cloud-sdk/bin/gcloud',
|
|
||||||
'expiry-key': '{.credential.token_expiry}',
|
|
||||||
'token-key': '{.credential.access_token}',
|
|
||||||
},
|
|
||||||
'name': 'gcp',
|
|
||||||
},
|
|
||||||
'username': str(self.fetch['masterAuth']['username']),
|
|
||||||
'password': str(self.fetch['masterAuth']['password']),
|
|
||||||
},
|
|
||||||
}
|
|
||||||
],
|
|
||||||
}
|
}
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
cloud/gcp
|
cloud/gcp
|
||||||
unsupported
|
|
||||||
|
|
|
@ -17,15 +17,12 @@
|
||||||
google.cloud.gcp_container_cluster:
|
google.cloud.gcp_container_cluster:
|
||||||
name: my-cluster
|
name: my-cluster
|
||||||
initial_node_count: 2
|
initial_node_count: 2
|
||||||
master_auth:
|
|
||||||
username: cluster_admin
|
|
||||||
password: my-secret-password
|
|
||||||
node_config:
|
node_config:
|
||||||
machine_type: n1-standard-4
|
machine_type: n1-standard-4
|
||||||
disk_size_gb: 500
|
disk_size_gb: 500
|
||||||
location: us-central1-a
|
location: us-central1-a
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "serviceaccount"
|
||||||
service_account_file: "{{ gcp_cred_file }}"
|
service_account_file: "{{ gcp_cred_file }}"
|
||||||
state: absent
|
state: absent
|
||||||
#----------------------------------------------------------
|
#----------------------------------------------------------
|
||||||
|
@ -33,15 +30,12 @@
|
||||||
google.cloud.gcp_container_cluster:
|
google.cloud.gcp_container_cluster:
|
||||||
name: my-cluster
|
name: my-cluster
|
||||||
initial_node_count: 2
|
initial_node_count: 2
|
||||||
master_auth:
|
|
||||||
username: cluster_admin
|
|
||||||
password: my-secret-password
|
|
||||||
node_config:
|
node_config:
|
||||||
machine_type: n1-standard-4
|
machine_type: n1-standard-4
|
||||||
disk_size_gb: 500
|
disk_size_gb: 500
|
||||||
location: us-central1-a
|
location: us-central1-a
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "serviceaccount"
|
||||||
service_account_file: "{{ gcp_cred_file }}"
|
service_account_file: "{{ gcp_cred_file }}"
|
||||||
state: present
|
state: present
|
||||||
register: result
|
register: result
|
||||||
|
@ -53,7 +47,7 @@
|
||||||
google.cloud.gcp_container_cluster_info:
|
google.cloud.gcp_container_cluster_info:
|
||||||
location: us-central1-a
|
location: us-central1-a
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "serviceaccount"
|
||||||
service_account_file: "{{ gcp_cred_file }}"
|
service_account_file: "{{ gcp_cred_file }}"
|
||||||
scopes:
|
scopes:
|
||||||
- https://www.googleapis.com/auth/cloud-platform
|
- https://www.googleapis.com/auth/cloud-platform
|
||||||
|
@ -67,15 +61,12 @@
|
||||||
google.cloud.gcp_container_cluster:
|
google.cloud.gcp_container_cluster:
|
||||||
name: my-cluster
|
name: my-cluster
|
||||||
initial_node_count: 2
|
initial_node_count: 2
|
||||||
master_auth:
|
|
||||||
username: cluster_admin
|
|
||||||
password: my-secret-password
|
|
||||||
node_config:
|
node_config:
|
||||||
machine_type: n1-standard-4
|
machine_type: n1-standard-4
|
||||||
disk_size_gb: 500
|
disk_size_gb: 500
|
||||||
location: us-central1-a
|
location: us-central1-a
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "serviceaccount"
|
||||||
service_account_file: "{{ gcp_cred_file }}"
|
service_account_file: "{{ gcp_cred_file }}"
|
||||||
state: present
|
state: present
|
||||||
register: result
|
register: result
|
||||||
|
@ -88,15 +79,12 @@
|
||||||
google.cloud.gcp_container_cluster:
|
google.cloud.gcp_container_cluster:
|
||||||
name: my-cluster
|
name: my-cluster
|
||||||
initial_node_count: 2
|
initial_node_count: 2
|
||||||
master_auth:
|
|
||||||
username: cluster_admin
|
|
||||||
password: my-secret-password
|
|
||||||
node_config:
|
node_config:
|
||||||
machine_type: n1-standard-4
|
machine_type: n1-standard-4
|
||||||
disk_size_gb: 500
|
disk_size_gb: 500
|
||||||
location: us-central1-a
|
location: us-central1-a
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "serviceaccount"
|
||||||
service_account_file: "{{ gcp_cred_file }}"
|
service_account_file: "{{ gcp_cred_file }}"
|
||||||
state: absent
|
state: absent
|
||||||
register: result
|
register: result
|
||||||
|
@ -122,15 +110,12 @@
|
||||||
google.cloud.gcp_container_cluster:
|
google.cloud.gcp_container_cluster:
|
||||||
name: my-cluster
|
name: my-cluster
|
||||||
initial_node_count: 2
|
initial_node_count: 2
|
||||||
master_auth:
|
|
||||||
username: cluster_admin
|
|
||||||
password: my-secret-password
|
|
||||||
node_config:
|
node_config:
|
||||||
machine_type: n1-standard-4
|
machine_type: n1-standard-4
|
||||||
disk_size_gb: 500
|
disk_size_gb: 500
|
||||||
location: us-central1-a
|
location: us-central1-a
|
||||||
project: "{{ gcp_project }}"
|
project: "{{ gcp_project }}"
|
||||||
auth_kind: "{{ gcp_cred_kind }}"
|
auth_kind: "serviceaccount"
|
||||||
service_account_file: "{{ gcp_cred_file }}"
|
service_account_file: "{{ gcp_cred_file }}"
|
||||||
state: absent
|
state: absent
|
||||||
register: result
|
register: result
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
cloud/gcp
|
cloud/gcp
|
||||||
unsupported
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue