Skip to content

Commit fbb260a

Browse files
committed
update to Kubernetes 1.16
1 parent bab9bde commit fbb260a

File tree

91 files changed

+229811
-140163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+229811
-140163
lines changed

kubernetes/.openapi-generator/COMMIT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Requested Commit: c9737cf97d5e31936639842d389118e980ee85a9
2-
Actual Commit: c9737cf97d5e31936639842d389118e980ee85a9
1+
Requested Commit: a979fd8e13c86431831b0c769ba7b484e744afa5
2+
Actual Commit: a979fd8e13c86431831b0c769ba7b484e744afa5

kubernetes/.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.0-SNAPSHOT
1+
4.2.0-SNAPSHOT
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
284acb5a4085e4d8f76178e5f0057cf9f5db2b3b6c244d34f49b7f1d8b7c9fae
1+
7343a558c44ee5251d1465500e55fbc88db17c0462e5c29dc0cb7f64f5848a07

kubernetes/git_push.sh

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
#!/bin/sh
22
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
33
#
4-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update"
4+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
55

66
git_user_id=$1
77
git_repo_id=$2
88
release_note=$3
9+
git_host=$4
10+
11+
if [ "$git_host" = "" ]; then
12+
git_host="github.com"
13+
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
14+
fi
915

1016
if [ "$git_user_id" = "" ]; then
1117
git_user_id="GIT_USER_ID"
@@ -28,7 +34,7 @@ git init
2834
# Adds the files in the local repository and stages them for commit.
2935
git add .
3036

31-
# Commits the tracked changes and prepares them to be pushed to a remote repository.
37+
# Commits the tracked changes and prepares them to be pushed to a remote repository.
3238
git commit -m "$release_note"
3339

3440
# Sets the new remote
@@ -37,16 +43,16 @@ if [ "$git_remote" = "" ]; then # git remote not defined
3743

3844
if [ "$GIT_TOKEN" = "" ]; then
3945
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
40-
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
46+
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
4147
else
42-
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
48+
git remote add origin https://${git_user_id}:${GIT_TOKEN}@${git_host}/${git_user_id}/${git_repo_id}.git
4349
fi
4450

4551
fi
4652

4753
git pull origin master
4854

4955
# Pushes (Forces) the changes in the local repository up to the remote repository
50-
echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git"
56+
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
5157
git push origin master 2>&1 | grep -v 'To https'
5258

kubernetes/kubernetes-client-core.cabal

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ description: .
88
.
99
base path: http://localhost
1010
.
11-
Kubernetes API version: v1.14.2
11+
Kubernetes API version: v1.16.2
1212
.
1313
OpenAPI version: 3.0.1
1414
.
1515
category: Web
1616
homepage: https://github.com/kubernetes-client/haskell
1717
author: Auto Generated
18-
maintainer: Shimin Guo <[email protected]>,
19-
Akshay Mankar <[email protected]>
18+
maintainer: Shimin Guo <[email protected]>, Akshay Mankar <[email protected]>
2019
license: Apache-2.0
2120
license-file: LICENSE
2221
build-type: Simple
@@ -45,9 +44,9 @@ library
4544
, deepseq >= 1.4 && <1.6
4645
, exceptions >= 0.4
4746
, http-api-data >= 0.3.4 && <0.5
48-
, http-client >=0.5 && <0.6
47+
, http-client >=0.5 && <0.7
4948
, http-client-tls
50-
, http-media >= 0.4 && < 0.8
49+
, http-media >= 0.4 && < 0.9
5150
, http-types >=0.8 && <0.13
5251
, iso8601-time >=0.1.3 && <0.2.0
5352
, microlens >= 0.4.3 && <0.5
@@ -66,8 +65,10 @@ library
6665
exposed-modules:
6766
Kubernetes.OpenAPI
6867
Kubernetes.OpenAPI.API.Admissionregistration
68+
Kubernetes.OpenAPI.API.AdmissionregistrationV1
6969
Kubernetes.OpenAPI.API.AdmissionregistrationV1beta1
7070
Kubernetes.OpenAPI.API.Apiextensions
71+
Kubernetes.OpenAPI.API.ApiextensionsV1
7172
Kubernetes.OpenAPI.API.ApiextensionsV1beta1
7273
Kubernetes.OpenAPI.API.Apiregistration
7374
Kubernetes.OpenAPI.API.ApiregistrationV1
@@ -101,6 +102,8 @@ library
101102
Kubernetes.OpenAPI.API.Core
102103
Kubernetes.OpenAPI.API.CoreV1
103104
Kubernetes.OpenAPI.API.CustomObjects
105+
Kubernetes.OpenAPI.API.Discovery
106+
Kubernetes.OpenAPI.API.DiscoveryV1alpha1
104107
Kubernetes.OpenAPI.API.Events
105108
Kubernetes.OpenAPI.API.EventsV1beta1
106109
Kubernetes.OpenAPI.API.Extensions

kubernetes/lib/Kubernetes/OpenAPI.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
55
66
OpenAPI Version: 3.0.1
7-
Kubernetes API version: v1.14.2
7+
Kubernetes API version: v1.16.2
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
-}
1010

kubernetes/lib/Kubernetes/OpenAPI/API/Admissionregistration.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
55
66
OpenAPI Version: 3.0.1
7-
Kubernetes API version: v1.14.2
7+
Kubernetes API version: v1.16.2
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
-}
1010

0 commit comments

Comments
 (0)