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
93c20fa4
Commit
93c20fa4
authored
Aug 12, 2021
by
Brad Davidson
Committed by
Brad Davidson
Aug 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump helm-controller to work around tiller crashes
Signed-off-by:
Brad Davidson
<
brad.davidson@rancher.com
>
parent
5f042d10
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
go.mod
go.mod
+1
-1
go.sum
go.sum
+2
-2
image-list.txt
scripts/airgap/image-list.txt
+1
-1
controller.go
.../github.com/k3s-io/helm-controller/pkg/helm/controller.go
+1
-1
modules.txt
vendor/modules.txt
+1
-1
No files found.
go.mod
View file @
93c20fa4
...
@@ -90,7 +90,7 @@ require (
...
@@ -90,7 +90,7 @@ require (
github.com/google/uuid v1.2.0
github.com/google/uuid v1.2.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/gorilla/websocket v1.4.2
github.com/k3s-io/helm-controller v0.10.
3
github.com/k3s-io/helm-controller v0.10.
5
github.com/k3s-io/kine v0.6.2
github.com/k3s-io/kine v0.6.2
github.com/klauspost/compress v1.12.2
github.com/klauspost/compress v1.12.2
github.com/kubernetes-sigs/cri-tools v0.0.0-00010101000000-000000000000
github.com/kubernetes-sigs/cri-tools v0.0.0-00010101000000-000000000000
...
...
go.sum
View file @
93c20fa4
...
@@ -520,8 +520,8 @@ github.com/k3s-io/go-powershell v0.0.0-20200701182037-6845e6fcfa79 h1:9naOL3iARE
...
@@ -520,8 +520,8 @@ github.com/k3s-io/go-powershell v0.0.0-20200701182037-6845e6fcfa79 h1:9naOL3iARE
github.com/k3s-io/go-powershell v0.0.0-20200701182037-6845e6fcfa79/go.mod h1:lsDHcxq5ugFJff6YHEwpzLh31NDv0B2cIKki1ViQ65o=
github.com/k3s-io/go-powershell v0.0.0-20200701182037-6845e6fcfa79/go.mod h1:lsDHcxq5ugFJff6YHEwpzLh31NDv0B2cIKki1ViQ65o=
github.com/k3s-io/go-powershell v0.0.0-20201118222746-51f4c451fbd7 h1:C+6IIP6yECS10qkq2EeGQjr2ts0k7UxrutGF+pLPSnU=
github.com/k3s-io/go-powershell v0.0.0-20201118222746-51f4c451fbd7 h1:C+6IIP6yECS10qkq2EeGQjr2ts0k7UxrutGF+pLPSnU=
github.com/k3s-io/go-powershell v0.0.0-20201118222746-51f4c451fbd7/go.mod h1:wJnuh+xbDmskSfAM3UikTsGO8kaWLu3iycSgUKAiYjQ=
github.com/k3s-io/go-powershell v0.0.0-20201118222746-51f4c451fbd7/go.mod h1:wJnuh+xbDmskSfAM3UikTsGO8kaWLu3iycSgUKAiYjQ=
github.com/k3s-io/helm-controller v0.10.
3 h1:P4VK98VzTSjReQfmjOk0se437dWbdqIRVfuXFNoR6/8
=
github.com/k3s-io/helm-controller v0.10.
5 h1:zrStmx4ZkhtFU/OqJYoAZFGFB1Bu+jZs0N8dtlVRxDk
=
github.com/k3s-io/helm-controller v0.10.
3
/go.mod h1:nZP8FH3KZrNNUf5r+SwwiMR63HS6lxdHdpHijgPfF74=
github.com/k3s-io/helm-controller v0.10.
5
/go.mod h1:nZP8FH3KZrNNUf5r+SwwiMR63HS6lxdHdpHijgPfF74=
github.com/k3s-io/kine v0.6.2 h1:1aJTPfB8HG4exqMKFVE5H0z4bepF05tJHtYNXotWXa4=
github.com/k3s-io/kine v0.6.2 h1:1aJTPfB8HG4exqMKFVE5H0z4bepF05tJHtYNXotWXa4=
github.com/k3s-io/kine v0.6.2/go.mod h1:rzCs93+rQHZGOiewMd84PDrER92QeZ6eeHbWkfEy4+w=
github.com/k3s-io/kine v0.6.2/go.mod h1:rzCs93+rQHZGOiewMd84PDrER92QeZ6eeHbWkfEy4+w=
github.com/k3s-io/kubernetes v1.20.9-k3s1 h1:4wMCFw3JKCP02PRlSpSuM3ydpiHrotfY265n8wE/7UQ=
github.com/k3s-io/kubernetes v1.20.9-k3s1 h1:4wMCFw3JKCP02PRlSpSuM3ydpiHrotfY265n8wE/7UQ=
...
...
scripts/airgap/image-list.txt
View file @
93c20fa4
docker.io/rancher/coredns-coredns:1.8.3
docker.io/rancher/coredns-coredns:1.8.3
docker.io/rancher/klipper-helm:v0.6.
3-build20210804
docker.io/rancher/klipper-helm:v0.6.
4-build20210813
docker.io/rancher/klipper-lb:v0.2.0
docker.io/rancher/klipper-lb:v0.2.0
docker.io/rancher/library-busybox:1.32.1
docker.io/rancher/library-busybox:1.32.1
docker.io/rancher/library-traefik:1.7.19
docker.io/rancher/library-traefik:1.7.19
...
...
vendor/github.com/k3s-io/helm-controller/pkg/helm/controller.go
View file @
93c20fa4
...
@@ -30,7 +30,7 @@ import (
...
@@ -30,7 +30,7 @@ import (
var
(
var
(
trueVal
=
true
trueVal
=
true
commaRE
=
regexp
.
MustCompile
(
`\\*,`
)
commaRE
=
regexp
.
MustCompile
(
`\\*,`
)
DefaultJobImage
=
"rancher/klipper-helm:v0.6.
3-build20210804
"
DefaultJobImage
=
"rancher/klipper-helm:v0.6.
4-build20210813
"
)
)
type
Controller
struct
{
type
Controller
struct
{
...
...
vendor/modules.txt
View file @
93c20fa4
...
@@ -686,7 +686,7 @@ github.com/json-iterator/go
...
@@ -686,7 +686,7 @@ github.com/json-iterator/go
# github.com/k3s-io/go-powershell v0.0.0-20200701182037-6845e6fcfa79
# github.com/k3s-io/go-powershell v0.0.0-20200701182037-6845e6fcfa79
github.com/k3s-io/go-powershell/backend
github.com/k3s-io/go-powershell/backend
github.com/k3s-io/go-powershell/utils
github.com/k3s-io/go-powershell/utils
# github.com/k3s-io/helm-controller v0.10.
3
# github.com/k3s-io/helm-controller v0.10.
5
## explicit
## explicit
github.com/k3s-io/helm-controller/pkg/apis/helm.cattle.io
github.com/k3s-io/helm-controller/pkg/apis/helm.cattle.io
github.com/k3s-io/helm-controller/pkg/apis/helm.cattle.io/v1
github.com/k3s-io/helm-controller/pkg/apis/helm.cattle.io/v1
...
...
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