apiVersion: v1
kind: Config
clusters:
- name: development-cluster
  cluster:
    certificate-authority: path/to/ca.crt # Path to certificate authority file
    server: https://123.45.67.89:6443 # Cluster API server address
contexts:
- name: dev-user@development-cluster
  context:
    cluster: development-cluster
    namespace: development # Default namespace
    user: dev-user
current-context: dev-user@development-cluster
users:
- name: dev-user
  user:
    client-certificate: path/to/cert.crt # Path to the client certificate
    client-key: path/to/key.key # Path to the client key
