2019-12-26 22:10:19 +05:30
|
|
|
- expanded = integration_expanded?('eks_')
|
|
|
|
%section.settings.as-eks.no-animate#js-eks-settings{ class: ('expanded' if expanded) }
|
|
|
|
.settings-header
|
|
|
|
%h4
|
|
|
|
= _('Amazon EKS')
|
2021-01-29 00:20:46 +05:30
|
|
|
%button.btn.gl-button.js-settings-toggle{ type: 'button' }
|
2019-12-26 22:10:19 +05:30
|
|
|
= expanded ? 'Collapse' : 'Expand'
|
|
|
|
%p
|
|
|
|
= _('Amazon EKS integration allows you to provision EKS clusters from GitLab.')
|
|
|
|
|
|
|
|
.settings-content
|
2020-10-24 23:57:45 +05:30
|
|
|
= form_for @application_setting, url: general_admin_application_settings_path(anchor: 'js-eks-settings'), html: { class: 'fieldset-form' } do |f|
|
2019-12-26 22:10:19 +05:30
|
|
|
= form_errors(@application_setting)
|
|
|
|
|
|
|
|
%fieldset
|
|
|
|
.form-group
|
|
|
|
.form-check
|
|
|
|
= f.check_box :eks_integration_enabled, class: 'form-check-input'
|
|
|
|
= f.label :eks_integration_enabled, class: 'form-check-label' do
|
|
|
|
Enable Amazon EKS integration
|
|
|
|
.form-group
|
|
|
|
= f.label :eks_account_id, 'Account ID', class: 'label-bold'
|
|
|
|
= f.text_field :eks_account_id, class: 'form-control'
|
|
|
|
.form-group
|
|
|
|
= f.label :eks_access_key_id, 'Access key ID', class: 'label-bold'
|
|
|
|
= f.text_field :eks_access_key_id, class: 'form-control'
|
|
|
|
.form-group
|
|
|
|
= f.label :eks_secret_access_key, 'Secret access key', class: 'label-bold'
|
2020-05-30 21:06:31 +05:30
|
|
|
= f.password_field :eks_secret_access_key, autocomplete: 'off', class: 'form-control'
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
= f.submit 'Save changes', class: "gl-button btn btn-success"
|