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
d37060d4
Commit
d37060d4
authored
Feb 19, 2016
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #21061 from mqliang/deployment-e2e-IntPtr
Auto commit by PR queue bot
parents
f56ed884
4f0031e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
deployment.go
test/e2e/deployment.go
+2
-2
No files found.
test/e2e/deployment.go
View file @
d37060d4
...
@@ -27,6 +27,7 @@ import (
...
@@ -27,6 +27,7 @@ import (
clientset
"k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
clientset
"k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset"
client
"k8s.io/kubernetes/pkg/client/unversioned"
client
"k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/pkg/kubectl"
"k8s.io/kubernetes/pkg/kubectl"
"k8s.io/kubernetes/pkg/util"
deploymentutil
"k8s.io/kubernetes/pkg/util/deployment"
deploymentutil
"k8s.io/kubernetes/pkg/util/deployment"
"k8s.io/kubernetes/pkg/util/intstr"
"k8s.io/kubernetes/pkg/util/intstr"
"k8s.io/kubernetes/pkg/util/wait"
"k8s.io/kubernetes/pkg/util/wait"
...
@@ -406,8 +407,7 @@ func testDeploymentCleanUpPolicy(f *Framework) {
...
@@ -406,8 +407,7 @@ func testDeploymentCleanUpPolicy(f *Framework) {
}
}
rsName
:=
"nginx-controller"
rsName
:=
"nginx-controller"
replicas
:=
1
replicas
:=
1
revisionHistoryLimit
:=
new
(
int
)
revisionHistoryLimit
:=
util
.
IntPtr
(
0
)
*
revisionHistoryLimit
=
0
_
,
err
:=
c
.
Extensions
()
.
ReplicaSets
(
ns
)
.
Create
(
newRS
(
rsName
,
replicas
,
rsPodLabels
,
"nginx"
,
"nginx"
))
_
,
err
:=
c
.
Extensions
()
.
ReplicaSets
(
ns
)
.
Create
(
newRS
(
rsName
,
replicas
,
rsPodLabels
,
"nginx"
,
"nginx"
))
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
Expect
(
err
)
.
NotTo
(
HaveOccurred
())
...
...
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