179 lines
6.9 KiB
JavaScript
179 lines
6.9 KiB
JavaScript
const ClusterAccess = {
|
|
props: [ 'cluster', 'token', 'state' ],
|
|
data() {
|
|
return {
|
|
accessType: "ssh",
|
|
signReqValidity: "1d",
|
|
sshSignReq: {
|
|
PubKey: "",
|
|
Principal: "root",
|
|
},
|
|
sshUserCert: null,
|
|
kubeSignReq: {
|
|
CSR: "",
|
|
User: "",
|
|
Group: "system:masters",
|
|
},
|
|
kubeUserCert: null,
|
|
downloadSet: null,
|
|
selectedAssets: {},
|
|
};
|
|
},
|
|
computed: {
|
|
availableAssets() {
|
|
return [
|
|
"kernel",
|
|
"initrd",
|
|
"uki",
|
|
"bootstrap.tar",
|
|
"boot.img.gz",
|
|
"boot.img",
|
|
"boot.qcow2",
|
|
"boot.vmdk",
|
|
"boot.iso",
|
|
"boot.tar",
|
|
"bootstrap-config",
|
|
"config",
|
|
"config.json",
|
|
"ipxe",
|
|
]
|
|
},
|
|
selectedAssetList() {
|
|
return this.availableAssets.filter(a => this.selectedAssets[a])
|
|
},
|
|
hostCount() {
|
|
return (this.state.Hosts||[]).filter(h => h.Cluster == this.cluster.Name).length
|
|
},
|
|
},
|
|
methods: {
|
|
sshCASign() {
|
|
event.preventDefault();
|
|
fetch(`/clusters/${this.cluster.Name}/ssh/user-ca/sign`, {
|
|
method: 'POST',
|
|
body: JSON.stringify({ ...this.sshSignReq, Validity: this.signReqValidity }),
|
|
headers: { 'Authorization': 'Bearer ' + this.token, 'Content-Type': 'application/json' },
|
|
}).then((resp) => {
|
|
if (resp.ok) {
|
|
resp.blob().then((cert) => { this.sshUserCert = URL.createObjectURL(cert) })
|
|
} else {
|
|
resp.json().then((resp) => alert('failed to sign: '+resp.message))
|
|
}
|
|
})
|
|
.catch((e) => { alert('failed to sign: '+e); })
|
|
},
|
|
kubeCASign() {
|
|
event.preventDefault();
|
|
fetch(`/clusters/${this.cluster.Name}/kube/sign`, {
|
|
method: 'POST',
|
|
body: JSON.stringify({ ...this.kubeSignReq, Validity: this.signReqValidity }),
|
|
headers: { 'Authorization': 'Bearer ' + this.token, 'Content-Type': 'application/json' },
|
|
}).then((resp) => {
|
|
if (resp.ok) {
|
|
resp.blob().then((cert) => { this.kubeUserCert = URL.createObjectURL(cert) })
|
|
} else {
|
|
resp.json().then((resp) => alert('failed to sign: '+resp.message))
|
|
}
|
|
})
|
|
.catch((e) => { alert('failed to sign: '+e); })
|
|
},
|
|
generateDownloadSet() {
|
|
event.preventDefault()
|
|
|
|
const hosts = this.hostCount ? (this.state.Hosts||[]).filter(h => h.Cluster == this.cluster.Name) : []
|
|
const items = hosts.map(h => ({
|
|
Kind: "host",
|
|
Name: h.Name,
|
|
Assets: this.selectedAssetList,
|
|
}))
|
|
|
|
fetch('/sign-download-set', {
|
|
method: 'POST',
|
|
body: JSON.stringify({Expiry: this.signReqValidity, Items: items}),
|
|
headers: { 'Authorization': 'Bearer ' + this.token, 'Content-Type': 'application/json' },
|
|
}).then((resp) => {
|
|
if (resp.ok) {
|
|
resp.json().then((set) => { this.downloadSet = set })
|
|
} else {
|
|
resp.json().then((resp) => alert('failed to generate: '+resp.message))
|
|
}
|
|
}).catch((e) => { alert('failed to generate: '+e) })
|
|
},
|
|
readFile(e, onload) {
|
|
const file = e.target.files[0];
|
|
if (!file) { return; }
|
|
const reader = new FileReader();
|
|
reader.onload = () => { onload(reader.result) };
|
|
reader.onerror = () => { alert("error reading file"); };
|
|
reader.readAsText(file);
|
|
},
|
|
loadPubKey(e) {
|
|
this.readFile(e, (v) => {
|
|
this.sshSignReq.PubKey = v;
|
|
});
|
|
},
|
|
loadCSR(e) {
|
|
this.readFile(e, (v) => {
|
|
this.kubeSignReq.CSR = v;
|
|
});
|
|
},
|
|
},
|
|
template: `
|
|
<h3>Access</h3>
|
|
|
|
<p>Grant access to:
|
|
<label class="radio"><input type="radio" v-model="accessType" value="ssh" /> SSH</label>
|
|
<label class="radio"><input type="radio" v-model="accessType" value="kube" /> Kubernetes</label>
|
|
<label class="radio"><input type="radio" v-model="accessType" value="download-set" /> Download set</label>
|
|
</p>
|
|
|
|
<p>Validity: <input type="text" v-model="signReqValidity"/> <small>time range, ie: -5m:1w, 5m, 1M, 1y, 1d-1s, etc.</small></p>
|
|
|
|
<div v-if="accessType == 'ssh'">
|
|
<h4>Grant SSH access</h4>
|
|
<p>User: <input type="text" v-model="sshSignReq.Principal"/></p>
|
|
<p>Public key (OpenSSH format):<br/>
|
|
<span class="text-and-file"><textarea v-model="sshSignReq.PubKey" style="height:3lh"></textarea>
|
|
<input type="file" accept=".pub" @change="loadPubKey" /></span>
|
|
</p>
|
|
<p><button @click="sshCASign">Sign SSH access</button>
|
|
<template v-if="sshUserCert">
|
|
=> <a :href="sshUserCert" download="ssh-cert.pub">Get certificate</a>
|
|
</template>
|
|
</p>
|
|
</div>
|
|
|
|
<div v-if="accessType == 'kube'">
|
|
<h4>Grant Kubernetes API access</h4>
|
|
<p>User: <input type="text" v-model="kubeSignReq.User"/> (by default, from the CSR)</p>
|
|
<p>Group: <input type="text" v-model="kubeSignReq.Group"/></p>
|
|
<p>Certificate signing request (PEM format):<br/>
|
|
<span class="text-and-file"><textarea v-model="kubeSignReq.CSR" style="height:7lh;"></textarea>
|
|
<input type="file" accept=".csr" @change="loadCSR" /></span>
|
|
</p>
|
|
<p><button @click="kubeCASign">Sign Kubernetes API access</button>
|
|
<template v-if="kubeUserCert">
|
|
=> <a :href="kubeUserCert" download="kube-cert.pub">Get certificate</a>
|
|
</template>
|
|
</p>
|
|
</div>
|
|
|
|
<div v-if="accessType == 'download-set'">
|
|
<h4>Grant download access</h4>
|
|
<p>Generates a signed download set granting access to the selected assets for all {{ hostCount }} hosts in this cluster.</p>
|
|
<h4>Available assets</h4>
|
|
<p class="downloads">
|
|
<template v-for="asset in availableAssets">
|
|
<label :class="{selected: selectedAssets[asset]}"><input type="checkbox" v-model="selectedAssets[asset]" /> {{ asset }}</label>
|
|
{{" "}}
|
|
</template>
|
|
</p>
|
|
<p><button :disabled="selectedAssetList.length==0" @click="generateDownloadSet">Generate download set</button></p>
|
|
<p v-if="downloadSet" style="word-break:break-all">
|
|
<a :href="'/public/download-set?set='+downloadSet" target="_blank">Open download set page</a>
|
|
<br/>
|
|
<button @click="navigator.clipboard.writeText(window.location.origin+'/public/download-set?set='+downloadSet)">Copy URL</button>
|
|
</p>
|
|
</div>
|
|
`
|
|
}
|