Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
7e145fd6
Commit
7e145fd6
authored
Aug 29, 2019
by
Balasankar "Balu" C
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use new location for gitlab-runner helm charts
Signed-off-by:
Balasankar "Balu" C
<
balasankar@gitlab.com
>
parent
1c687f7f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
4 deletions
+9
-4
app/assets/javascripts/clusters/stores/clusters_store.js
app/assets/javascripts/clusters/stores/clusters_store.js
+1
-1
changelogs/unreleased/runner-chart-repo-use-new-location.yml
changelogs/unreleased/runner-chart-repo-use-new-location.yml
+5
-0
doc/user/clusters/applications.md
doc/user/clusters/applications.md
+1
-1
spec/frontend/clusters/components/application_row_spec.js
spec/frontend/clusters/components/application_row_spec.js
+1
-1
spec/frontend/clusters/stores/clusters_store_spec.js
spec/frontend/clusters/stores/clusters_store_spec.js
+1
-1
No files found.
app/assets/javascripts/clusters/stores/clusters_store.js
View file @
7e145fd6
...
...
@@ -55,7 +55,7 @@ export default class ClusterStore {
...
applicationInitialState
,
title
:
s__
(
'
ClusterIntegration|GitLab Runner
'
),
version
:
null
,
chartRepo
:
'
https://gitlab.com/charts/gitlab-runner
'
,
chartRepo
:
'
https://gitlab.com/
gitlab-org/
charts/gitlab-runner
'
,
updateAvailable
:
null
,
updateSuccessful
:
false
,
updateFailed
:
false
,
...
...
changelogs/unreleased/runner-chart-repo-use-new-location.yml
0 → 100644
View file @
7e145fd6
---
title
:
Use new location for gitlab-runner helm charts
merge_request
:
32384
author
:
type
:
other
doc/user/clusters/applications.md
View file @
7e145fd6
...
...
@@ -103,7 +103,7 @@ implications](../project/clusters/index.md#security-implications) before doing s
NOTE:
**Note:**
The
[
runner/gitlab-runner
](
https://gitlab.com/charts/gitlab-runner
)
[
runner/gitlab-runner
](
https://gitlab.com/
gitlab-org/
charts/gitlab-runner
)
chart is used to install this application with a
[
`values.yaml`
](
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/vendor/runner/values.yaml
)
file.
...
...
spec/frontend/clusters/components/application_row_spec.js
View file @
7e145fd6
...
...
@@ -371,7 +371,7 @@ describe('Application Row', () => {
it
(
'
contains a link to the chart repo if application has been updated
'
,
()
=>
{
const
version
=
'
0.1.45
'
;
const
chartRepo
=
'
https://gitlab.com/charts/gitlab-runner
'
;
const
chartRepo
=
'
https://gitlab.com/
gitlab-org/
charts/gitlab-runner
'
;
vm
=
mountComponent
(
ApplicationRow
,
{
...
DEFAULT_APPLICATION_STATE
,
status
:
APPLICATION_STATUS
.
INSTALLED
,
...
...
spec/frontend/clusters/stores/clusters_store_spec.js
View file @
7e145fd6
...
...
@@ -86,7 +86,7 @@ describe('Clusters Store', () => {
requestReason
:
null
,
version
:
mockResponseData
.
applications
[
2
].
version
,
updateAvailable
:
mockResponseData
.
applications
[
2
].
update_available
,
chartRepo
:
'
https://gitlab.com/charts/gitlab-runner
'
,
chartRepo
:
'
https://gitlab.com/
gitlab-org/
charts/gitlab-runner
'
,
installed
:
false
,
installFailed
:
false
,
updateFailed
:
false
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment