Skip to content

Migrating to GCP

Why migrate our application(s)?

Prerequisites

Basic setup

Follow the Getting started's Access from laptop instructions, and make sure to pay attention to the GCP section.

Security

Our GCP clusters use a zero trust security model, implying that the application must specify both incoming and outgoing connections in order to receive or send traffic at all. This is expressed using the access policy spec.

The access policy also enables zone traversal and cross-cluster communication. This must be implemented in both applications, by using and accepting tokens from TokenX or AAD.

Deploy

The same deployment mechanism is leveraged for both on-premise and GCP K8s clusters. See deployment section of the documentation for how to leverage the NAIS deploy tool.

Ingress

See GCP clusters.

Privacy

Google is cleared to be a data processor for personally identifiable information (PII) at NAV. However, before your team moves any applications or data to GCP the following steps should be taken:

  1. Verify that you have a valid and up-to-date PVK for your application. This document should be tech stack agnostic and as such does not need to be changed to reflect the move to GCP.
  2. If the application stores any data in GCP, update Behandlingskatalogen to reflect that Google is a data processor.

ROS

The ROS analysis for the team's applications need to be updated to reflect any changes in platform components used. For example, if your team has any specific measures implemented to mitigate risks related to "Kode 6 / 7 users", you should consider if these measures still apply on the new infrastructure or if you want to initiate any additional measures. When updating the ROS, please be aware that the GCP components you are most likely to use have already undergone risk assessment by the nais team and that you can refer to these ROS documents in your own risk assessment process.

Roles and responsibilites

As with applications in our on-premises clusters, the operation, security and integrity of any application is the responsibility of the team that owns that particular application. Conversely, it is the responsiblity of the nais platform team to handle the operation, security and integrity of the nais application platform and associated components. At GCP, Google is responsible for operating infrastructure underlying the nais platform, as well as any cloud services not consumed through the nais abstraction layer. Service exceptions reported by either Google or the nais team will be announced in the #nais slack channel.

If your application stores personally identifiable information in any GCP data store, Google is effectively a data processor ("databehandler") for this data, and your documentation needs to reflect this fact.

FAQ

What do we have to change?

Answer
  • Cluster name: All references to cluster name. (Logs, grafana, deploy, etc.)
  • Secrets: are now stored as native secrets in the cluster, rather than externally in Vault.
  • Namespace: If your application is in the default namespace, you will have to move to team namespace
  • Storage: Use GCS-buckets instead of s3 in GCP. Buckets, and access to them, are expressed in your application manifest
  • Ingress: There are some domains that are available both on-prem and in GCP, but some differ, make sure to verify before you move.
  • Postgres: A new database (and access to it) is automatically configured when expressing sqlInstance in your application manifest

We're currently investigating the possibility of using on-prem databases during a migration window.

  • PVK: Update your existing PVK to include cloud

GCP compared to on-premises summarizes the differences and how that may apply to your application.

What should we change?

Answer

What do we not need to change?

Answer

You do not have to make any changes to your application code. Ingresses work the same way, although some domains overlap and others are exclusive. Logging, secure logging, metrics and alerts work the same way.

What can we do now to ease migration to GCP later?

Answer
  • Make sure your PVK is up to date.
  • Deploy your application to your team's namespace instead of default, as this is not available in GCP.
  • Use a token auth flow between your applications. Either TokenX, AAD on-behalf-of or AAD client_credentials flow depending on your use case. This allows for a more seamless migration of your applications. E.g. if you have two apps in FSS, you can migrate one without the other.

What about PVK?

Answer

A PVK is not a unique requirement for GCP, so all applications should already have one. See about security and privacy when using platform services for details

How do we migrate our database?

Answer

See Migrating databases to GCP.

Why is there no Vault in GCP?

Answer

There is native functionality in GCP that overlap with many of the use cases that Vault have covered on-prem. Using these mechanisms removes the need to deal with these secrets at all. Introducing team namespaces allows the teams to manage their own secrets in their own namespaces without the need for IAC and manual routines. For other secrets that are not used by the application during runtime, you can use the Secret Manager in each team's GCP project.

How do we migrate from Vault to Secrets Manager?

Answer

See the Secrets Manager documentation.

How do we migrate from filestorage to buckets?

Answer

Add a bucket to your application spec Copy the data from the filestore using s3cmd to the bucket using gsutil

What are the plans for cloud migration in NAV?

Answer

Both sbs clusters are now retired. NAVs strategic goal is to shut off all on-prem datacenters by the end of 2023

What can we do in our GCP project?

Answer

The teams GCP projects are primarily used for automatically generated resources (buckets and postgres). We're working on extending the service offering. However, additional access may be granted if required by the team

How long does it take to migrate?

Answer

A minimal application without any external requirements only have to change a single configuration parameter when deploying and have migrated their application in 5 minutes. GCP compared to on-premises summarizes the differences and how that may apply to your application.

We have personally identifiable and/or sensitive data in our application, and we heard about the Privacy Shield invalidation. Can we still use GCP?

Answer

Yes. NAV's evaluation of our Data Processor Agreement with Google post-Schrems II is that it still protects us and is valid for use given that data is stored and processed in data centers located within the EU/EEA. If your team uses resources provisioned through NAIS, this is guaranteed by the nais team. If your team uses any other GCP services the team is responsible for ensuring that only resources within EU/EES are used (as well as for evaluating the risk of using these services).

See Laws and regulations/Application PVK for details.

How do I reach an application found on-premises from my application in GCP?

Answer

The application on-premises should generally fulfill the following requirements:

  1. Be secured with OAuth 2.0. That is, either:
  2. Exposed to GCP using a special ingress:
    • https://<app>.dev-fss-pub.nais.io
    • https://<app>.prod-fss-pub.nais.io

In cases where the application contains unsecured or endpoints secured with other mechanisms, see the "Application Requirements" section in this document.

Create a pull request at https://github.com/navikt/bigip-iac/tree/main/pub-fss add these ingresses which allows them be exposed to GCP.

The application on-premises must then:

  1. Add the ingress created above to the list of ingresses:

    spec:
      ingresses:
        - https://<app>.<dev|prod>-fss-pub.nais.io
    
  2. If secured with OAuth 2.0, ensure that the application also has set up inbound access policies:

The application in GCP must then:

  1. Add the above hosts to their outbound external access policies:

    spec:
      accessPolicy:
        outbound:
          external:
            - host: <app>.<dev|prod>-fss-pub.nais.io
    

How do I reach an application found on GCP from my application on-premises?

Answer

The application in GCP must be exposed on a matching ingress:

ingress reachable from zone
<app>.intern.dev.nav.no dev-fss
<app>.intern.nav.no prod-fss
<app>.nav.no internet, i.e. all clusters

The application on-premises should not have to use webproxy to reach these ingresses.

GCP compared to on-premises

Feature on-prem gcp Comment
Deploy ✔️ ✔️ different clustername when deploying
Logging ✔️ ✔️ different clustername in logs.adeo.no
Metrics ✔️ ✔️ same mechanism, different datasource
Nais app dashboard ✔️ ✔️ new and improved in GCP
Alerts ✔️ ✔️ identical
Secure logs ✔️ ✔️ different clustername in logs.adeo.no
Kafka ✔️ ✔️ identical
Secrets Vault Secret manager
Team namespaces ✔️ ✔️
Shared namespaces ✔️ ✖️ Default namespace not available for teams in GCP
Health checks ✔️ ✔️ identical
Ingress ✔️ ✔️ see GCP and on-premises for available domains
Storage Ceph Buckets
Postgres ✔️ (IAC) ✔️ (self-service)
Laptop access ✔️ ✔️
domain: dev.intern.nav.no ✔️ (Automatic) Wildcard DNS points to GCP load balancer
Access to FSS services ✔️ Identical (either API-gw or TokenX. May require a proxy app, see FAQ for details.
NAV truststore ✔️ ✔️
PVK required ✔️ ✔️ amend to cover storage in cloud
Security Zone Model zero-trust

Last update: 2023-04-11
Created: 2020-06-08