deb.open-vault/ui/app/models/raft-join.js

49 lines
1.4 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import Model, { attr } from '@ember-data/model';
import { expandAttributeMeta } from 'vault/utils/field-to-attrs';
import { computed } from '@ember/object';
//leader_api_addr (string: <required>) Address of the leader node in the Raft cluster to which this node is trying to join.
//retry (bool: false) - Retry joining the Raft cluster in case of failures.
//leader_ca_cert (string: "") - CA certificate used to communicate with Raft's leader node.
//leader_client_cert (string: "") - Client certificate used to communicate with Raft's leader node.
//leader_client_key (string: "") - Client key used to communicate with Raft's leader node.
export default Model.extend({
leaderApiAddr: attr('string', {
label: 'Leader API Address',
}),
retry: attr('boolean', {
label: 'Keep retrying to join in case of failures',
}),
leaderCaCert: attr('string', {
label: 'Leader CA Certificate',
editType: 'file',
}),
leaderClientCert: attr('string', {
label: 'Leader Client Certificate',
editType: 'file',
}),
leaderClientKey: attr('string', {
label: 'Leader Client Key',
editType: 'file',
}),
fields: computed(function () {
return expandAttributeMeta(this, [
'leaderApiAddr',
'leaderCaCert',
'leaderClientCert',
'leaderClientKey',
'retry',
]);
}),
});