Specify australia-southeast1 region in skaffold.yaml

Hi,

I’m learning kubernetes and trying to use the skaffold.yaml file to create the image in google build. My query is how do i specify the region to australia-southeast1 instead of us.gcr.io in the yaml file below?

apiVersion: skaffold/v2alpha3
kind: Config
deploy:
  kubectl:
    manifests:
      - ./infra/k8s/*
build:
  local:
    push: false
  googleCloudBuild:
    projectId:  ticketing
  artifacts:
    - image: us.gcr.io/
      context: auth
      docker:
        dockerfile: Dockerfile
      sync:
        manual:
          - src: 'src/**/*.ts'
            dest: .

Thanks
Jag