Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python3 all #276

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Intellij IDEA files
.idea/*
*.iml

.venv/
*.diff
python-asyncio-client/
python-client/
python-pydantic-client/
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ are normally:

Example settings file for python-client:

```shell
export KUBERNETES_BRANCH="master"
export CLIENT_VERSION="8.0.0b1"
export CLIENT_VERSION="31.0.0"
export PACKAGE_NAME="client"

```

Note: For generating the client for any language, the PACKAGE_NAME should be "client".
You can use the latest version for the CLIENT_VERSION. It's displayed here for
the python-client ( https://github.com/kubernetes-client/python ), and similarly
Expand Down
19 changes: 10 additions & 9 deletions openapi/python-asyncio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
set -o errexit
set -o nounset
set -o pipefail
set -x

ARGC=$#

Expand Down Expand Up @@ -57,21 +58,21 @@ echo "--- Patching generated code..."
if [ ${PACKAGE_NAME} == "client" ]; then

# Post-processing of the generated Python wrapper.
find "${OUTPUT_DIR}/test" -type f -name \*.py -exec sed -i 's/\bclient/kubernetes_asyncio.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec sed -i 's/\bclient/kubernetes_asyncio.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec sed -i 's/kubernetes_asyncio.client-python/client-python/g' {} +
find "${OUTPUT_DIR}/test" -type f -name \*.py -exec gsed -i 's/\bclient/kubernetes_asyncio.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i 's/\bclient/kubernetes_asyncio.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i 's/kubernetes_asyncio.client-python/client-python/g' {} +

# fix imports
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec sed -i 's/import client\./import kubernetes_asyncio.client./g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec sed -i 's/from client/from kubernetes_asyncio.client/g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec sed -i 's/getattr(client\.models/getattr(kubernetes_asyncio.client.models/g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/import client\./import kubernetes_asyncio.client./g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/from client/from kubernetes_asyncio.client/g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/getattr(client\.models/getattr(kubernetes_asyncio.client.models/g' {} +

else

# Post-processing of the generated Python wrapper.
find "${OUTPUT_DIR}/test" -type f -name \*.py -exec sed -i "s/\\bclient/${PACKAGE_NAME}.client/g" {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec sed -i "s/\\bclient/${PACKAGE_NAME}.client/g" {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec sed -i "s/${PACKAGE_NAME}.client-python/client-python/g" {} +
find "${OUTPUT_DIR}/test" -type f -name \*.py -exec gsed -i "s/\\bclient/${PACKAGE_NAME}.client/g" {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i "s/\\bclient/${PACKAGE_NAME}.client/g" {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i "s/${PACKAGE_NAME}.client-python/client-python/g" {} +

fi

Expand Down
6 changes: 3 additions & 3 deletions openapi/python-asyncio.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
<configuration>
<inputSpec>${generator.spec.path}</inputSpec>
<skipValidateSpec>true</skipValidateSpec>
<generatorName>python-legacy</generatorName>
<generatorName>python</generatorName>
<library>asyncio</library>
<gitUserId>kubernetes-client</gitUserId>
<gitRepoId>python</gitRepoId>
<gitUserId>kmambo</gitUserId>
<gitRepoId>kubernetes-client-python-asyncio-pydantic-v2</gitRepoId>
<configOptions>
<packageName>${generator.package.name}</packageName>
<packageVersion>${generator.client.version}</packageVersion>
Expand Down
69 changes: 69 additions & 0 deletions openapi/python-pydantic-v1.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
#!/bin/bash

# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -o errexit
set -o nounset
set -o pipefail

ARGC=$#

if [ $# -ne 2 ]; then
echo "Usage:"
echo " $(basename ${0}) OUTPUT_DIR SETTING_FILE_PATH"
echo " Setting file should define KUBERNETES_BRANCH, CLIENT_VERSION, and PACKAGE_NAME"
echo " Setting file can define an optional USERNAME if you're working on a fork"
echo " Setting file can define an optional REPOSITORY if you're working on a ecosystem project"
exit 1
fi


OUTPUT_DIR=$1
SETTING_FILE=$2
mkdir -p "${OUTPUT_DIR}"

SCRIPT_ROOT=$(dirname "${BASH_SOURCE}")
pushd "${SCRIPT_ROOT}" > /dev/null
SCRIPT_ROOT=`pwd`
popd > /dev/null

pushd "${OUTPUT_DIR}" > /dev/null
OUTPUT_DIR=`pwd`
popd > /dev/null

source "${SCRIPT_ROOT}/openapi-generator/client-generator.sh"
source "${SETTING_FILE}"
OPENAPI_GENERATOR_COMMIT="${OPENAPI_GENERATOR_COMMIT:-v4.3.0}"

CLIENT_LANGUAGE=python-pydantic-v1; \
CLEANUP_DIRS=(client/api client/apis client/models docs test); \
kubeclient::generator::generate_client "${OUTPUT_DIR}"

echo "--- Patching generated code..."

# Post-processing of the generated Python wrapper.
find "${OUTPUT_DIR}/test" -type f -name \*.py -exec gsed -i 's/\bclient/kubernetes.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i 's/\bclient/kubernetes.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i 's/kubernetes.client-python/client-python/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i 's/kubernetes-kubernetes.client/kubernetes-client/g' {} +

# fix imports
if [ "${PACKAGE_NAME}" = client ]; then
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/import client\./import kubernetes.client./g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/from client/from kubernetes.client/g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/getattr(client\.models/getattr(kubernetes.client.models/g' {} +
fi

echo "---Done."
55 changes: 55 additions & 0 deletions openapi/python-pydantic-v1.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.kubernetes</groupId>
<artifactId>client-python</artifactId>
<version>1.0-SNAPSHOT</version>
<name>client-python</name>
<url>http://kubernetes.io</url>
<build>
<plugins>
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>${openapi-generator-version}</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>${generator.spec.path}</inputSpec>
<generatorName>python-pydantic-v1</generatorName>
<gitUserId>kmambo</gitUserId>
<gitRepoId>kubernetes-client-python-pydantic-v1</gitRepoId>
<skipValidateSpec>true</skipValidateSpec>
<configOptions>
<packageName>${generator.package.name}</packageName>
<packageVersion>${generator.client.version}</packageVersion>
<sortParamsByRequiredFlag>true</sortParamsByRequiredFlag>
</configOptions>
<output>${generator.output.path}</output>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- dependencies are needed for the client being generated -->
<dependency>
<groupId>org.openapitools</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger-annotations-version}</version>
</dependency>
</dependencies>
<properties>
<swagger-annotations-version>1.5.0</swagger-annotations-version>
<maven-plugin-version>1.0.0</maven-plugin-version>

<!-- Default values for the generator parameters. -->
<generator.output.path>.</generator.output.path>
<generator.spec.path>swagger.json</generator.spec.path>
<generator.package.name>swagger_client</generator.package.name>
<generator.client.version>unversioned</generator.client.version>
</properties>
</project>
15 changes: 8 additions & 7 deletions openapi/python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
set -o errexit
set -o nounset
set -o pipefail
set -x

ARGC=$#

Expand Down Expand Up @@ -54,16 +55,16 @@ kubeclient::generator::generate_client "${OUTPUT_DIR}"
echo "--- Patching generated code..."

# Post-processing of the generated Python wrapper.
find "${OUTPUT_DIR}/test" -type f -name \*.py -exec sed -i 's/\bclient/kubernetes.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec sed -i 's/\bclient/kubernetes.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec sed -i 's/kubernetes.client-python/client-python/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec sed -i 's/kubernetes-kubernetes.client/kubernetes-client/g' {} +
find "${OUTPUT_DIR}/test" -type f -name \*.py -exec gsed -i 's/\bclient/kubernetes.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i 's/\bclient/kubernetes.client/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i 's/kubernetes.client-python/client-python/g' {} +
find "${OUTPUT_DIR}" -path "${OUTPUT_DIR}/base" -prune -o -type f -a -name \*.md -exec gsed -i 's/kubernetes-kubernetes.client/kubernetes-client/g' {} +

# fix imports
if [ "${PACKAGE_NAME}" = client ]; then
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec sed -i 's/import client\./import kubernetes.client./g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec sed -i 's/from client/from kubernetes.client/g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec sed -i 's/getattr(client\.models/getattr(kubernetes.client.models/g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/import client\./import kubernetes.client./g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/from client/from kubernetes.client/g' {} +
find "${OUTPUT_DIR}/client/" -type f -name \*.py -exec gsed -i 's/getattr(client\.models/getattr(kubernetes.client.models/g' {} +
fi

echo "---Done."
4 changes: 2 additions & 2 deletions openapi/python.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<configuration>
<inputSpec>${generator.spec.path}</inputSpec>
<generatorName>python</generatorName>
<gitUserId>kubernetes-client</gitUserId>
<gitRepoId>python</gitRepoId>
<gitUserId>kmambo</gitUserId>
<gitRepoId>kubernetes-client-python</gitRepoId>
<skipValidateSpec>true</skipValidateSpec>
<configOptions>
<packageName>${generator.package.name}</packageName>
Expand Down
4 changes: 4 additions & 0 deletions python-settings.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export KUBERNETES_BRANCH="master"
export CLIENT_VERSION="31.0.0"
export PACKAGE_NAME="client"
export OPENAPI_GENERATOR_COMMIT=v7.10.0