Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-07-25Update namespace label text for managed clustersJacques Erasmus
Added the ability to update the namespace label text for gitlab-managed
2019-07-02Backports css class used in EE specsFilipa Lacerda
2019-06-18Remove support for creating non-RBAC kubernetes clustersHordur Freyr Yngvason
2019-06-18Allow switching clusters between managed/unmanagedTiger
Any resources created while the cluster was managed will be untouched, allowing users to set/unset this flag as they please.
2019-05-27Add changelog entryJacques Erasmus
Added a changelog entry for the feature
2019-05-16Fix Style/NegatedUnless offenses in HAML fileRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-05-06Show health graphs on group-levelPeter Leitzen
Tweak cluster helper and refactor its specs.
2019-05-03Add gitlab-managed option to clusters formMayra Cabrera
When this option is enabled, GitLab will create namespaces and service accounts as usual. When disabled, GitLab wont create any project specific kubernetes resources Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56557
2019-04-29Prefer usage of helper `expanded_by_default?`Peter Leitzen
Stop using `Rails.env.test?` in views.
2019-04-17Add help texts to K8 form fieldsEnrique Alcántara
2019-04-10Correct path to cluster health partialReuben Pereira
2019-04-03Fix cluster details form validationEnrique Alcantara
2019-04-03Improve API URL validation messageEnrique Alcantara
2019-04-03Display inline validation error messagesEnrique Alcantara
In the new cluster forms, display form error messages below form fields instead of a summary banner on top of the form. Include client side validation in order to display user friendly error messages. Also remove unnecessary placeholders.
2019-03-29Renames Cluster#managed? to provided_by_user?Mayra Cabrera
This will allow to user the term managed? on https://gitlab.com/gitlab-org/gitlab-ce/issues/56557. Managed? will be used to distinct clusters that are automatically managed by GitLab
2019-03-25Improvements for Knative installationMayra Cabrera
Displays Knative domain field automatically after Helm is successfully installed. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/56954
2019-03-22Merge branch '57357-automate-base-domain-help-text' into 'master'Kushal Pandya
Automate base domain help text on Clusters page Closes #57357 See merge request gitlab-org/gitlab-ce!26124
2019-03-21Update domain help text when ingress is installedEnrique Alcantara
When ingress application is installed, the cluster domain help text is updated to indicate that ingress external ip can be used as the cluster domain
2019-03-21Hide/show ingress external ip help textEnrique Alcantara
Use not_to instead of to__not
2019-03-21Add help text to "environment scope" field in new cluster formMike Greiling
2019-03-19Merge branch '6354-clusters-show' into 'master'Phil Hughes
Removes EE differences for clusters/show Closes gitlab-ee#6354 See merge request gitlab-org/gitlab-ce!26324
2019-03-19Removes EE differences for clusters/showFilipa Lacerda
2019-03-18Removes EE differences for clusters/_sidebar.html.hamlFilipa Lacerda
2019-03-08Add support for ingress hostnameswalkafwalka
2019-03-05Sends update route to the clientJoão Cunha
- extends presenters to include update endpoint path - sends path to the client on clusters clusters show view.
2019-02-15Fix setting domain in QA Auto DevOps specsDylan Griffith
The domain name setting was not doing anything (as far as I could tell). Now we set the input and save the form. This was a regression introduced in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24580/diffs
2019-02-07Addresses UX and BE comments:Mayra Cabrera
- Changes help text on clusters form to make it more explicit. - Removes unnecessary warnings on auto devops form - Simplifies cluster methods logic
2019-02-04Addresses backend/db review commentsMayra Cabrera
- Fixes multiple typos on AutoDevops script - Add an alias to Clusters::Cluster#domain as base_domain, so it's more descriptive - Removes unnecessary memoization on qa specs - Changes migration to a post migration to deal better with traffic on big instances (like gitlab.com)
2019-02-04Moves domain setting to Cluster settingMayra Cabrera
Changes domain field to be on the Cluster page show, removing it from Auto DevOps setting. Also injects the new environment variable KUBE_INGRESS_BASE_DOMAIN into kubernetes#predefined_variables. Migration to move the information from ProjectAutoDevops#domain to Clusters::Cluster#domain. As well as necessary modifications to qa selectors Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/52363
2019-01-29Merge branch 'remove-duplicated-show-forms-on-cluster-views' into 'master'Grzegorz Bizon
Removes duplicated cluster show partials See merge request gitlab-org/gitlab-ce!24654
2019-01-29Externalize strings from `/app/views/clusters`George Tsiolis
2019-01-29Removes duplicated cluster show partialsMayra Cabrera
gcp/show and user/show partial contain basically the same html elements causing duplication. The difference between the partials is that one of them has html elements disabled if the cluster is managed. This MR aims to remove that duplication by having just a single show partial for both types
2019-01-16Changes environment scope UI on clusters pageMayra Cabrera
Modifies clusters form to display a disabled text field for environment scope. This changes is needed for https://gitlab.com/gitlab-org/gitlab-ce/issues/52363
2019-01-05Require Knative to be installed only on an RBAC kubernetes clusterChris Baumbauer
2019-01-03Port GitLab.com gold trial callout changes to CELuke Bennett
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/8731
2018-12-24Allow users to add cluster with ancestorsMayra Cabrera
Include a new policy in Clusterables (projects and groups), which checks if another cluster can be added clusterable_has_cluster? and multiple_clusters_available private methods will be overriden in EE Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/34758
2018-12-16Use finder to decide to show note to userThong Kuah
Given the note is about how to interpret ancestor clusters, use the finder which actually knows if there are any ancestor clusters to find out if the note should be shown, rather than passing the same info via a view to a helper Added note about Kaminari.paginate_array Link to followup issue too
2018-12-16Move code to presenterThong Kuah
Part of the code such as #show_path is already present on the presenter. Also avoid having code in two places (helper and presenter) Sanitize and assert html_safe. Additional layer of defense - on top of GitLab already requiring group names to be composed of small set of chars A-Z, - and spaces. Only link to cluster if user can read cluster Make clear that arg is a GroupClusterablePresenter Add more specs for completeness
2018-12-16Refactor methods on ClusterHelperMayra Cabrera
- Use sprite_icon instead of hardcoded html - Use a more descriptive method name - Changes specs to use html_safe matcher
2018-12-16Cleans cluster views a bitMayra Cabrera
- Moves logic into ClustersHelp - Add CSS to ensure compatibility with EE view.
2018-12-16Move group path display logic to helperThong Kuah
Add specs
2018-12-16Update link to documentationMike Greiling
Make link clear in note box Also update strings to be translatable
2018-12-16Render group namespaces in clusters indexMike Greiling
2018-12-16Correctly enable "Add Kubernetes cluster" buttonMike Greiling
2018-12-13Move description of cluster type to presenterThong Kuah
2018-12-06Revert "Merge branch 'ce-6983-promote-starting-a-gitlab-com-trial' into ↵Luke Bennett
'master'" This reverts commit 427c1e72194556c9e198659dfff92cb42b31fb62, reversing changes made to 5aac64a79527afef9ff6b4b1db52a9c01c5d6af6.
2018-11-23Merge branch 'ce-6983-promote-starting-a-gitlab-com-trial' into 'master'Kamil Trzciński
CE port: Promote the GitLab.com Gold trial on a users default dashboard See merge request gitlab-org/gitlab-ce!22901
2018-11-21Promote the GitLab.com Gold trial on a users default dashboardLuke Bennett
Show a dismissable callout on a users dashboard for a free trial of the GitLab.com Gold plan. Hide the callout from users who have dismissed the callout, are already on a trial or are already on the gold plan
2018-11-12Merge branch 'master' into certmanager-tempAmit Rathi
2018-11-08Reverse view override as EE has an override tooThong Kuah
Use presenters instead otherwise we will have x2 overides in EE