How do I make it do it? ```export const tillerSA =...
# azure
e
How do I make it do it?
Copy code
export const tillerSA = new ServiceAccount('tiller',
    {
        kind: 'ServiceAccount',
    });

// @ts-ignore
export const tillerCRB = new ClusterRoleBinding("tiller-cluster-admin",
    {
        roleRef: {
            apiGroup: "<http://rbac.authorization.k8s.io|rbac.authorization.k8s.io>",
            kind: "ClusterRole",
            name: 'cluster-admin'
        },
        subjects: [{
            kind: "ServiceAccount",
            name: 'tiller',
            namespace: "kube-system"
        }]
    })