debian-mirror-gitlab/app/assets/javascripts/create_cluster/eks_cluster/components/create_eks_cluster.vue

30 lines
714 B
Vue
Raw Normal View History

2019-12-04 20:38:33 +05:30
<script>
import ServiceCredentialsForm from './service_credentials_form.vue';
import EksClusterConfigurationForm from './eks_cluster_configuration_form.vue';
export default {
components: {
ServiceCredentialsForm,
EksClusterConfigurationForm,
},
2019-12-21 20:55:43 +05:30
props: {
gitlabManagedClusterHelpPath: {
type: String,
required: true,
},
kubernetesIntegrationHelpPath: {
type: String,
required: true,
},
},
2019-12-04 20:38:33 +05:30
};
</script>
<template>
2019-12-21 20:55:43 +05:30
<div class="js-create-eks-cluster">
<eks-cluster-configuration-form
:gitlab-managed-cluster-help-path="gitlabManagedClusterHelpPath"
:kubernetes-integration-help-path="kubernetesIntegrationHelpPath"
/>
</div>
2019-12-04 20:38:33 +05:30
</template>