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
2021-04-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-04-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-03-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-05Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-07Use separate Kubernetes namespaces per environmentTiger Watson
Kubernetes deployments on new clusters will now have a separate namespace per project environment, instead of sharing a single namespace for the project. Behaviour of existing clusters is unchanged. All new functionality is controlled by the :kubernetes_namespace_per_environment feature flag, which is safe to enable/disable at any time.
2019-08-01Use stubbed certificate and key in Helm factoryTiger
2019-07-30Remove typo from factory nameJoão Cunha
- the typo in this factory name was precluding us from properly creating dynamic code to remove duplciation.
2019-07-26Add frozen_string_literal to spec/factoriesThong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-07-19Adds cluster_for_group factory for convienenceThong Kuah
Also means we don't have to resort to an update statement to set parent for child groups who also have clusters. This is much shorter than ``` create(:cluster, :provided_by_gcp, :group, groups: [group]) ```
2019-07-02Tidy spec for API::ProjectClustersDylan Griffith
2019-06-14Refresh service_account_token for kubernetes_namespacesDylan Griffith
There seems to be several examples where service_account_token is blank even in GitLab.com newly created kubernetes_namespaces . We have not figured out why they are blank but this should hopefully fix some issues similar to https://gitlab.com/gitlab-org/gitlab-ce/issues/55362
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-30Rename #timeouted -> #timed_outDylan Griffith
2019-04-30Destroy app on successful uninstallationThong Kuah
Rescue and put into :uninstall_errored if something goes wrong while destroying, which can happen. I think it is safe to expose the full error message from the destroy error. Remove the :uninstalled state as no longer used.
2019-04-30Define state transitions for uninstalling appsThong Kuah
Added :uninstalled state as wasn't sure if we should be destroying the cluster apps
2019-04-02Add new field to Clusters tableMayra Cabrera
Adds boolean field 'managed' to clusters table. This new column will be used to distinguish those clusters that are automatically managed by gitlab. Needed for https://gitlab.com/gitlab-org/gitlab-ce/issues/56557
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-20Tweak FactoryBot definition for clustersTiger
Only create an associated project or group if there were none already specified.
2019-01-22Add domain field into Clusters::ClusterMayra Cabrera
This is the 1st step for moving Auto DevOps domain into cluster settings, whether is project or group. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/52363
2019-01-05Require Knative to be installed only on an RBAC kubernetes clusterChris Baumbauer
2018-12-04Fallback to admin token for project clusters onlyThong Kuah
We do not want group level clusters to fall back to what was old behaviour for project level clusters. So instead we will not return any KUBE_TOKEN if we cannot find a suitable kubernetes_namespace for the project, in the group level cluster case. Add test cases to assert above
2018-11-26Expose external_ip to knative cluster applicationChris Baumbauer
2018-11-20Fix a typo in specAmit Rathi
2018-11-20Fix a typoAmit Rathi
2018-11-20Fixing more testsAmit Rathi