#
# This trival and invalid kubeconfig file has the purpose of allowing us to
# build some targets using `operator-sdk run ...` without requiring a running
# kubernetes environment.
# It will not allow you to really run and use the operator.
#
apiVersion: v1
kind: Config
preferences: {}
current-context: temp
clusters:
- name: temp
  cluster:
    server: temp
users:
- name: temp
contexts:
- name: temp
  context:
    cluster: temp
    user: temp
    namespace: temp
