Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
7ffe802a
Unverified
Commit
7ffe802a
authored
Jun 19, 2019
by
Erik Wilson
Committed by
GitHub
Jun 19, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #553 from ibuildthecloud/master
Add missing ConfigMap cache to helm apply
parents
cef0fb7a
8edef5be
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
+7
-5
server.go
pkg/server/server.go
+2
-1
trash.lock
trash.lock
+1
-1
vendor.conf
vendor.conf
+1
-1
controller.go
...github.com/rancher/helm-controller/pkg/helm/controller.go
+3
-2
No files found.
pkg/server/server.go
View file @
7ffe802a
...
@@ -133,7 +133,8 @@ func masterControllers(ctx context.Context, sc *Context, config *Config) error {
...
@@ -133,7 +133,8 @@ func masterControllers(ctx context.Context, sc *Context, config *Config) error {
sc
.
Helm
.
Helm
()
.
V1
()
.
HelmChart
(),
sc
.
Helm
.
Helm
()
.
V1
()
.
HelmChart
(),
sc
.
Batch
.
Batch
()
.
V1
()
.
Job
(),
sc
.
Batch
.
Batch
()
.
V1
()
.
Job
(),
sc
.
Auth
.
Rbac
()
.
V1
()
.
ClusterRoleBinding
(),
sc
.
Auth
.
Rbac
()
.
V1
()
.
ClusterRoleBinding
(),
sc
.
Core
.
Core
()
.
V1
()
.
ServiceAccount
())
sc
.
Core
.
Core
()
.
V1
()
.
ServiceAccount
(),
sc
.
Core
.
Core
()
.
V1
()
.
ConfigMap
())
if
err
:=
servicelb
.
Register
(
ctx
,
if
err
:=
servicelb
.
Register
(
ctx
,
sc
.
K8s
,
sc
.
K8s
,
sc
.
Apply
,
sc
.
Apply
,
...
...
trash.lock
View file @
7ffe802a
...
@@ -227,7 +227,7 @@ import:
...
@@ -227,7 +227,7 @@ import:
- package: github.com/rancher/dynamiclistener
- package: github.com/rancher/dynamiclistener
version: 077eb13a904f2c62496f31b158135d9743526f82
version: 077eb13a904f2c62496f31b158135d9743526f82
- package: github.com/rancher/helm-controller
- package: github.com/rancher/helm-controller
version:
4f3b43bfd868bcb74fe847f8df88c482e9b70ff8
version:
d5f5c830231110722f14d446d3b2038e5cdf1532
- package: github.com/rancher/remotedialer
- package: github.com/rancher/remotedialer
version: 20ec38853712bb6d348f0db9ac47d34c954c6b00
version: 20ec38853712bb6d348f0db9ac47d34c954c6b00
- package: github.com/rancher/wrangler
- package: github.com/rancher/wrangler
...
...
vendor.conf
View file @
7ffe802a
...
@@ -15,7 +15,7 @@ github.com/rancher/wrangler 4202dbfa88013c19238bb004d82e013f0593493d
...
@@ -15,7 +15,7 @@ github.com/rancher/wrangler 4202dbfa88013c19238bb004d82e013f0593493d
github
.
com
/
rancher
/
wrangler
-
api
efe26ac6a9d720e1bfa5a8cc5f8dce5ad598ce26
github
.
com
/
rancher
/
wrangler
-
api
efe26ac6a9d720e1bfa5a8cc5f8dce5ad598ce26
github
.
com
/
rancher
/
dynamiclistener
077
eb13a904f2c62496f31b158135d9743526f82
github
.
com
/
rancher
/
dynamiclistener
077
eb13a904f2c62496f31b158135d9743526f82
github
.
com
/
rancher
/
remotedialer
20
ec38853712bb6d348f0db9ac47d34c954c6b00
github
.
com
/
rancher
/
remotedialer
20
ec38853712bb6d348f0db9ac47d34c954c6b00
github
.
com
/
rancher
/
helm
-
controller
4
f3b43bfd868bcb74fe847f8df88c482e9b70ff8
github
.
com
/
rancher
/
helm
-
controller
d5f5c830231110722f14d446d3b2038e5cdf1532
github
.
com
/
matryer
/
moq
ee5226d43009
https
://
github
.
com
/
rancher
/
moq
.
git
github
.
com
/
matryer
/
moq
ee5226d43009
https
://
github
.
com
/
rancher
/
moq
.
git
github
.
com
/
coreos
/
flannel
823
afe66b2266bf71f5bec24e6e28b26d70cfc7c
https
://
github
.
com
/
ibuildthecloud
/
flannel
.
git
github
.
com
/
coreos
/
flannel
823
afe66b2266bf71f5bec24e6e28b26d70cfc7c
https
://
github
.
com
/
ibuildthecloud
/
flannel
.
git
github
.
com
/
natefinch
/
lumberjack
aee4629129445bbdfb69aa565537dcfa16544311
github
.
com
/
natefinch
/
lumberjack
aee4629129445bbdfb69aa565537dcfa16544311
...
...
vendor/github.com/rancher/helm-controller/pkg/helm/controller.go
View file @
7ffe802a
...
@@ -46,9 +46,10 @@ func Register(ctx context.Context, apply apply.Apply,
...
@@ -46,9 +46,10 @@ func Register(ctx context.Context, apply apply.Apply,
helms
helmcontroller
.
HelmChartController
,
helms
helmcontroller
.
HelmChartController
,
jobs
batchcontroller
.
JobController
,
jobs
batchcontroller
.
JobController
,
crbs
rbaccontroller
.
ClusterRoleBindingController
,
crbs
rbaccontroller
.
ClusterRoleBindingController
,
sas
corecontroller
.
ServiceAccountController
)
{
sas
corecontroller
.
ServiceAccountController
,
cm
corecontroller
.
ConfigMapController
)
{
apply
=
apply
.
WithSetID
(
name
)
.
apply
=
apply
.
WithSetID
(
name
)
.
WithCacheTypes
(
helms
,
jobs
,
crbs
,
sas
)
.
WithCacheTypes
(
helms
,
jobs
,
crbs
,
sas
,
cm
)
.
WithStrictCaching
()
WithStrictCaching
()
relatedresource
.
Watch
(
ctx
,
"helm-pod-watch"
,
relatedresource
.
Watch
(
ctx
,
"helm-pod-watch"
,
...
...
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