Taicheng's Profile

  • AI
  • Cloud
  • Ops
  • Code
  • BUSI
  • About


A Certified Cloud Architect & AI Enthusiast

Illustration of a bird flying.
  • Private Google Access

    Certain Google API based managed services do not use VPC Networks. They use public service endpoints that specifies the network address of an API service. VM instances that have no external IP addresses can use Private Google Access to reach external IP addresses of Google APIs and services. For example: You enable Private Google Access…

    October 27, 2024

  • Everything Changes

    Nothing stays the same

    October 27, 2024

  • Service Directory

    Google Cloud introduced Service Directory, a fully managed cloud service conceived as a single place to publish, discover, and connect services regardless of their environment Service Directory use the following components: Clients that want to discover, publish, and manage services inside Service Directory can use the following methods to interact with its API: ADD ENDPOINT…

    October 27, 2024

  • Choosing a deployment platform

    A high-level overview of how you could decide on the most suitable platform for your application.

    October 27, 2024

  • Canary releases

    A canary release is used when you create a new version but you want to only give it a small percentage of requests to test it for bugs before migrating 100% of requests to it. For example, give a new version 10% ot the requests and split the traffic randomly. You can then monitor for…

    October 27, 2024

  • Blue Green Deployments

    It’s basically a technique for releasing your application in a predictable manner with an goal of reducing any downtime associated with a release. It’s a quick way to prime your app before releasing, and also quickly roll back if you find issues.

    October 27, 2024

  • A/B testing

    A/B testing is used when you want to compare multiple versions of an app to seewhich is better. You can, for example, give two versions 50% of the traffic. Split by IP address, that way once a user starts getting one version they get that version for every subsequent request. You can then define some…

    October 27, 2024

  • Deploying to Kubernetes

    The gcloud container command group lets you create and manage Google Kubernetes Engine containers and clusters. Create cluster Connect and apply yaml file: Show the running pods: Show all the deployments:

    October 27, 2024

  • Pod Disruption Budgets 

    October 27, 2024

  • Dockerfile

    The Dockerfile is a recipe for how to build the container image, while .dockerignore defines the set of files that should be ignored when copying files into the image. Multistage Dockerfile:

    October 27, 2024

←Previous Page
1 … 23 24 25 26 27 … 34
Next Page→