Besides the control plane setup described in the general installation guide, each of our resources have a data plane component, which basically needs permissions to read and/or write to Pub/Sub. Herein, we show the steps needed to configure such Pub/Sub enabled Service Account.
-
Create a Google Cloud project and install the
gcloud
CLI and rungcloud auth login
. This sample will use a mix ofgcloud
andkubectl
commands. The rest of the sample assumes that you've set the$PROJECT_ID
environment variable to your Google Cloud project id, and also set your project ID as default usinggcloud config set project $PROJECT_ID
. -
Enable the
Cloud Pub/Sub API
on your project:gcloud services enable pubsub.googleapis.com
Create a Google Cloud Service Account to interact with Pub/Sub
In general, we would just need permissions to receive messages
(roles/pubsub.subscriber
). However, in the case of the Channel
, we would
also need the ability to publish messages (roles/pubsub.publisher
).
-
Create a new Service Account named
cre-dataplane
with the following command:gcloud iam service-accounts create cre-dataplane
-
Give that Service Account the necessary permissions on your project.
In this example, and for the sake of simplicity, we will just grant
roles/pubsub.editor
privileges to the Service Account, which encompasses both of the above plus some other permissions. Note that if you prefer finer-grained privileges, you can just grant the ones mentioned above.gcloud projects add-iam-policy-binding $PROJECT_ID \ --member=serviceAccount:cre-dataplane@$PROJECT_ID.iam.gserviceaccount.com \ --role roles/pubsub.editor
Note: If you are going to use metrics and tracing to track your resources, you also need
roles/monitoring.metricWriter
for metrics functionality:gcloud projects add-iam-policy-binding $PROJECT_ID \ --member=serviceAccount:cre-dataplane@$PROJECT_ID.iam.gserviceaccount.com \ --role roles/monitoring.metricWriter
and
roles/cloudtrace.agent
for tracing functionality:gcloud projects add-iam-policy-binding $PROJECT_ID \ --member=serviceAccount:cre-dataplane@$PROJECT_ID.iam.gserviceaccount.com \ --role roles/cloudtrace.agent
It is the recommended way to access Google Cloud services from within GKE due to its improved security properties and manageability. For more information about Workload Identity see here.
Note:
- If you install the Knative-GCP Constructs with v0.14.0 or older release, please use option 2.
spec.googleServiceAccount
in v0.14.0 is deprecated for security implications. It has not been promoted to v1beta1 and is expected to be removed from v1alpha1 in the v0.16.0 release. Instead,spec.serviceAccountName
has been introduced for Workload Identity in v0.15.0, whose value is a Kubernetes Service Account.
There are two scenarios to leverage Workload Identity for resources in the Data Plane:
-
Non-default scenario:
Using the Google Cloud Service Account
cre-dataplane
you just created and using Option 1 (Recommended): Workload Identity in Authentication Mechanism for GCP to configure Workload Identity in the namespace your resources will reside. (You may notice that this link is pointing to the manual Workload Identity configuration in the Control Plane. Non-default scenario Workload Identity configuration in the Data Plane is similar to the manual Workload Identity configuration in the Control Plane)You will have a Kubernetes Service Account after the above configuration, which is bound to the Google Cloud Service Account
cre-dataplane
. Remember to put this Kubernetes Service Account name as thespec.serviceAccountName
when you create resources in the example. -
Default scenario:
Instead of manually configuring Workload Identity with Authentication Mechanism for GCP, you can authorize the Controller to configure Workload Identity for you.
You need to grant
iam.serviceAccountAdmin
permission of the Google Cloud Service Accountcre-dataplane
you just created to the Control Plane's Google Cloud Service Accountcloud-run-events
by:gcloud iam service-accounts add-iam-policy-binding \ cre-dataplane@$PROJECT_ID.iam.gserviceaccount.com \ --member=serviceAccount:cloud-run-events@$PROJECT_ID.iam.gserviceaccount.com \ --role roles/iam.serviceAccountAdmin
Then, modify
clusterDefaults
in ConfigMapconfig-gcp-auth
.You can directly edit the ConfigMap by:
kubectl edit configmap config-gcp-auth -n cloud-run-events
and add
workloadIdentityMapping
inclusterDefaults
:default-auth-config: | clusterDefaults: workloadIdentityMapping: default-cre-dataplane: cre-dataplane@$PROJECT_ID.iam.gserviceaccount.com
When updating the configuration, note that
default-auth-config
is nested underdata
. If you encounter an error, you are likely attempting to modify the example configuration in_example
.Here,
default-cre-dataplane
refers to a Kubernetes Service Account bound to the Google Cloud Service Accountcre-dataplane
. Remember to put this Kubernetes Service Account name as thespec.serviceAccountName
when you create resources in the example.Kubernetes Service Account
default-cre-dataplane
doesn't need to exist in a specific namespace. Once it is set in the ConfigMapconfig-gcp-auth
, the Control Plane will create it for you and configure the corresponding Workload Identity relationship between the Kubernetes Service Accountdefault-cre-dataplane
and the Google Cloud Service Accountcre-dataplane
when you create resources using the Kubernetes Service Accountdefault-cre-dataplane
.
A Condition
WorkloadIdentityConfigured
will show up under resources'
Status
, indicating the Workload Identity configuration status.
Note: The Controller currently doesn’t perform any access control checks,
as a result, any user who can create a resource can get access to the Google Cloud
Service Account which grants the iam.serviceAccountAdmin
permission to the Controller.
As an example, if you followed the instructions above, then any user that can make
a Knative-GCP source or Channel (e.g. CloudAuditLogsSource
, CloudPubSubSource
,
etc.) can cause the Kubernetes Service Account default-cre-dataplane
to be created.
If they can also create Pods in that namespace, then they can make a Pod that uses
the Google Service Account cre-dataplane
credentials.
-
Download a new JSON private key for that Service Account. Be sure not to check this key into source control!
gcloud iam service-accounts keys create cre-dataplane.json \ --iam-account=cre-dataplane@$PROJECT_ID.iam.gserviceaccount.com
-
Create a secret on the Kubernetes cluster with the downloaded key. Remember to create the secret in the namespace your resources will reside. The example below does so in the
default
namespace.kubectl --namespace default create secret generic google-cloud-key --from-file=key.json=cre-dataplane.json
google-cloud-key
andkey.json
are default values expected by our resources.
-
Delete the secret
kubectl --namespace default delete secret google-cloud-key
-
Delete the service account
gcloud iam service-accounts delete cre-dataplane@$PROJECT_ID.iam.gserviceaccount.com