Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
f8b496fd
Unverified
Commit
f8b496fd
authored
May 24, 2019
by
Martin Hickey
Committed by
GitHub
May 24, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5772 from dev-chulbuji/master
change deployment version
parents
90f50a11
3708fad5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
install.go
cmd/helm/installer/install.go
+1
-1
deployment.yaml
docs/examples/nginx/templates/deployment.yaml
+1
-1
install.md
docs/install.md
+2
-2
client_test.go
pkg/kube/client_test.go
+3
-3
No files found.
cmd/helm/installer/install.go
View file @
f8b496fd
...
...
@@ -125,7 +125,7 @@ func Deployment(opts *Options) (*v1beta1.Deployment, error) {
}
dep
.
TypeMeta
=
metav1
.
TypeMeta
{
Kind
:
"Deployment"
,
APIVersion
:
"
extensions/v1beta
1"
,
APIVersion
:
"
apps/v
1"
,
}
return
dep
,
nil
}
...
...
docs/examples/nginx/templates/deployment.yaml
View file @
f8b496fd
apiVersion
:
extensions/v1beta
1
apiVersion
:
apps/v
1
kind
:
Deployment
metadata
:
# This uses a "fullname" template (see _helpers)
...
...
docs/install.md
View file @
f8b496fd
...
...
@@ -280,7 +280,7 @@ helm init --override metadata.annotations."deployment\.kubernetes\.io/revision"=
Output:
```
apiVersion:
extensions/v1beta
1
apiVersion:
apps/v
1
kind: Deployment
metadata:
annotations:
...
...
@@ -337,7 +337,7 @@ The Tiller installation is skipped and the manifest is output to stdout
in JSON format.
```
"apiVersion": "
extensions/v1beta
1",
"apiVersion": "
apps/v
1",
"kind": "Deployment",
"metadata": {
"creationTimestamp": null,
...
...
pkg/kube/client_test.go
View file @
f8b496fd
...
...
@@ -700,7 +700,7 @@ spec:
tier: backend
role: master
---
apiVersion:
extensions/v1beta
1
apiVersion:
apps/v
1
kind: Deployment
metadata:
name: redis-master
...
...
@@ -740,7 +740,7 @@ spec:
tier: backend
role: slave
---
apiVersion:
extensions/v1beta
1
apiVersion:
apps/v
1
kind: Deployment
metadata:
name: redis-slave
...
...
@@ -780,7 +780,7 @@ spec:
app: guestbook
tier: frontend
---
apiVersion:
extensions/v1beta
1
apiVersion:
apps/v
1
kind: Deployment
metadata:
name: frontend
...
...
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