summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-20 09:46:32 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-20 09:46:32 +0000
commit71ce796ddadae132692d7f55d8f0760fa30f5d71 (patch)
treecf803af3b596165847146b0f4f6eb5e5dfe1a0bb
parent3cb681266fc3bd35adeab1de26f955f51db32a1a (diff)
automatic import of python-komposopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-kompos.spec462
-rw-r--r--sources1
3 files changed, 464 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..6890782 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/kompos-0.4.5.tar.gz
diff --git a/python-kompos.spec b/python-kompos.spec
new file mode 100644
index 0000000..22bebf1
--- /dev/null
+++ b/python-kompos.spec
@@ -0,0 +1,462 @@
+%global _empty_manifest_terminate_build 0
+Name: python-kompos
+Version: 0.4.5
+Release: 1
+Summary: Kompos - k8s cloud automation
+License: Apache2
+URL: https://github.com/adobe/kompos
+Source0: https://mirrors.aliyun.com/pypi/web/packages/50/43/b16248e09ebbf98dabc25f48878ac91455121ddbaa99b275896f12da0324/kompos-0.4.5.tar.gz
+BuildArch: noarch
+
+Requires: python3-simpledi
+Requires: python3-PyYAML
+Requires: python3-himl
+Requires: python3-fastjsonschema
+Requires: python3-termcolor
+Requires: python3-kubeconfig
+
+%description
+# kompos
+
+[![Build Status](https://www.travis-ci.com/adobe/kompos.svg?token=8uHqfhgsxdvJ93qWAxhn&branch=main)](https://www.travis-ci.com/adobe/kompos) [![Docker pull](https://img.shields.io/docker/pulls/adobe/kompos)](https://hub.docker.com/r/adobe/kompos) [![](https://images.microbadger.com/badges/version/adobe/kompos.svg)](https://microbadger.com/images/adobe/kompos "Get your own version badge on microbadger.com") [![License](https://img.shields.io/github/license/adobe/kompos)](https://github.com/adobe/kompos/blob/master/LICENSE) [![PyPI pyversions](https://img.shields.io/pypi/pyversions/kompos.svg)](https://pypi.python.org/pypi/kompos/)
+
+![kompos](img/kompos.png)
+
+**Kompos** is a configuration driven tool for provisioning and managing
+Kubernetes infrastructure across AWS and Azure. It uses a hierarchical folder
+structure and yaml files to store and generate configurations, with pluggable
+compositions that encapsulates the infrastructure code and state. Terraform and
+helmfile are supported as provisioners.
+
+Below is a graphical representation of the data flow.
+
+![kompos-data-flow](img/kompos-diagram.svg)
+
+## Installation
+
+_**NOTE**: Only Python 3 is supported._
+
+### PyPI
+
+```bash
+pip install kompos
+```
+
+### Locally for development
+
+Using virtualenv
+
+```bash
+pip install virtualenv
+virtualenv .env
+source .env/bin/activate
+(env) cd kompos/
+(env) pip install --editable .
+```
+
+## Hierarchical configuration
+
+Kompos leverages [himl](https://github.com/adobe/himl) to provide a
+[hiera](https://puppet.com/docs/puppet/latest/hiera_intro.html#concept-7256)-like
+configuration structure.
+
+Checkout the [examples](./examples) for more information.
+
+## Nix integration
+
+With kompos you can leverage [nix](https://nixos.org/nix/) to pin your
+infrastructure code (i.e terraform & helmfile releases) on a specific version.
+This enables you to finely control your deployments and use different
+infrastructure versions per environment, cluster etc.
+
+#### Prerequisites
+
+Install `nix` and `nix-prefetch-git`.
+
+```bash
+$ curl -L https://nixos.org/nix/install | bash
+
+$ nix-env -f '<nixpkgs>' -iA nix-prefetch-git
+```
+
+#### Configuration
+
+The integration can be globally enabled or diabled with the flag `nix: [true|false]` and a disable overwrite
+with `--no-nix` argument. Below are the
+necessary parts of komposconfig regarding nix & versioning:
+
+```yaml
+terraform:
+ # This is the place to look for the terraform repo locally.
+ # Used as the default if nix is not enabled.
+ local_path: '/home/user/terraform-stack'
+
+ # This is needed in case the modules are not in the root of the repo.
+ root_path: 'src/terraform'
+
+ repo:
+ # This will be the name of the nix derivation for terraform.
+ name: 'terraform-stack'
+
+ # The repo we would like to version.
+ url: "git@github.com:my-org/terraform-stack.git"
+
+# Likewise for helmfile.
+helmfile:
+ local_path: '/home/user/helmfile-releases'
+ root_path: 'src/helmfiles'
+
+ repo:
+ name: 'helmfile-releases'
+ url: "git@github.com:my-org/helmfile-releases.git"
+
+nix: true
+```
+
+And in the hierarchical configuration you'll need the following keys:
+
+```yaml
+infrastructure:
+ terraform:
+ version: "0.1.0" # A git tag or a commit sha.
+
+ # This is an optional field.
+ # The sha256 hash of the repo provides data integrity and ensures that we
+ # always get the same input.
+ #
+ # It can be omitted when you're using a tag that is periodically updated.
+ # (e.g in a dev/nightly environment). Since this is a mandatory field for nix,
+ # nix-prefetch-git will be used as a fallback to caclulate it.
+ sha256: "ab9190b0ecc8060a54f1fac7de606e6b2c4757c227f2ce529668eb145d9a9516"
+
+ # Likewise for helmfile.
+ helmfile:
+ version: "0.1.0"
+ sha256: "139cd5119d398d06f6535f42d775986a683a90e16ce129a5fb7f48870613a1a5"
+```
+
+### Docker Image
+
+## License
+
+[Apache License 2.0](/LICENSE)
+
+
+
+
+
+
+%package -n python3-kompos
+Summary: Kompos - k8s cloud automation
+Provides: python-kompos
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-kompos
+# kompos
+
+[![Build Status](https://www.travis-ci.com/adobe/kompos.svg?token=8uHqfhgsxdvJ93qWAxhn&branch=main)](https://www.travis-ci.com/adobe/kompos) [![Docker pull](https://img.shields.io/docker/pulls/adobe/kompos)](https://hub.docker.com/r/adobe/kompos) [![](https://images.microbadger.com/badges/version/adobe/kompos.svg)](https://microbadger.com/images/adobe/kompos "Get your own version badge on microbadger.com") [![License](https://img.shields.io/github/license/adobe/kompos)](https://github.com/adobe/kompos/blob/master/LICENSE) [![PyPI pyversions](https://img.shields.io/pypi/pyversions/kompos.svg)](https://pypi.python.org/pypi/kompos/)
+
+![kompos](img/kompos.png)
+
+**Kompos** is a configuration driven tool for provisioning and managing
+Kubernetes infrastructure across AWS and Azure. It uses a hierarchical folder
+structure and yaml files to store and generate configurations, with pluggable
+compositions that encapsulates the infrastructure code and state. Terraform and
+helmfile are supported as provisioners.
+
+Below is a graphical representation of the data flow.
+
+![kompos-data-flow](img/kompos-diagram.svg)
+
+## Installation
+
+_**NOTE**: Only Python 3 is supported._
+
+### PyPI
+
+```bash
+pip install kompos
+```
+
+### Locally for development
+
+Using virtualenv
+
+```bash
+pip install virtualenv
+virtualenv .env
+source .env/bin/activate
+(env) cd kompos/
+(env) pip install --editable .
+```
+
+## Hierarchical configuration
+
+Kompos leverages [himl](https://github.com/adobe/himl) to provide a
+[hiera](https://puppet.com/docs/puppet/latest/hiera_intro.html#concept-7256)-like
+configuration structure.
+
+Checkout the [examples](./examples) for more information.
+
+## Nix integration
+
+With kompos you can leverage [nix](https://nixos.org/nix/) to pin your
+infrastructure code (i.e terraform & helmfile releases) on a specific version.
+This enables you to finely control your deployments and use different
+infrastructure versions per environment, cluster etc.
+
+#### Prerequisites
+
+Install `nix` and `nix-prefetch-git`.
+
+```bash
+$ curl -L https://nixos.org/nix/install | bash
+
+$ nix-env -f '<nixpkgs>' -iA nix-prefetch-git
+```
+
+#### Configuration
+
+The integration can be globally enabled or diabled with the flag `nix: [true|false]` and a disable overwrite
+with `--no-nix` argument. Below are the
+necessary parts of komposconfig regarding nix & versioning:
+
+```yaml
+terraform:
+ # This is the place to look for the terraform repo locally.
+ # Used as the default if nix is not enabled.
+ local_path: '/home/user/terraform-stack'
+
+ # This is needed in case the modules are not in the root of the repo.
+ root_path: 'src/terraform'
+
+ repo:
+ # This will be the name of the nix derivation for terraform.
+ name: 'terraform-stack'
+
+ # The repo we would like to version.
+ url: "git@github.com:my-org/terraform-stack.git"
+
+# Likewise for helmfile.
+helmfile:
+ local_path: '/home/user/helmfile-releases'
+ root_path: 'src/helmfiles'
+
+ repo:
+ name: 'helmfile-releases'
+ url: "git@github.com:my-org/helmfile-releases.git"
+
+nix: true
+```
+
+And in the hierarchical configuration you'll need the following keys:
+
+```yaml
+infrastructure:
+ terraform:
+ version: "0.1.0" # A git tag or a commit sha.
+
+ # This is an optional field.
+ # The sha256 hash of the repo provides data integrity and ensures that we
+ # always get the same input.
+ #
+ # It can be omitted when you're using a tag that is periodically updated.
+ # (e.g in a dev/nightly environment). Since this is a mandatory field for nix,
+ # nix-prefetch-git will be used as a fallback to caclulate it.
+ sha256: "ab9190b0ecc8060a54f1fac7de606e6b2c4757c227f2ce529668eb145d9a9516"
+
+ # Likewise for helmfile.
+ helmfile:
+ version: "0.1.0"
+ sha256: "139cd5119d398d06f6535f42d775986a683a90e16ce129a5fb7f48870613a1a5"
+```
+
+### Docker Image
+
+## License
+
+[Apache License 2.0](/LICENSE)
+
+
+
+
+
+
+%package help
+Summary: Development documents and examples for kompos
+Provides: python3-kompos-doc
+%description help
+# kompos
+
+[![Build Status](https://www.travis-ci.com/adobe/kompos.svg?token=8uHqfhgsxdvJ93qWAxhn&branch=main)](https://www.travis-ci.com/adobe/kompos) [![Docker pull](https://img.shields.io/docker/pulls/adobe/kompos)](https://hub.docker.com/r/adobe/kompos) [![](https://images.microbadger.com/badges/version/adobe/kompos.svg)](https://microbadger.com/images/adobe/kompos "Get your own version badge on microbadger.com") [![License](https://img.shields.io/github/license/adobe/kompos)](https://github.com/adobe/kompos/blob/master/LICENSE) [![PyPI pyversions](https://img.shields.io/pypi/pyversions/kompos.svg)](https://pypi.python.org/pypi/kompos/)
+
+![kompos](img/kompos.png)
+
+**Kompos** is a configuration driven tool for provisioning and managing
+Kubernetes infrastructure across AWS and Azure. It uses a hierarchical folder
+structure and yaml files to store and generate configurations, with pluggable
+compositions that encapsulates the infrastructure code and state. Terraform and
+helmfile are supported as provisioners.
+
+Below is a graphical representation of the data flow.
+
+![kompos-data-flow](img/kompos-diagram.svg)
+
+## Installation
+
+_**NOTE**: Only Python 3 is supported._
+
+### PyPI
+
+```bash
+pip install kompos
+```
+
+### Locally for development
+
+Using virtualenv
+
+```bash
+pip install virtualenv
+virtualenv .env
+source .env/bin/activate
+(env) cd kompos/
+(env) pip install --editable .
+```
+
+## Hierarchical configuration
+
+Kompos leverages [himl](https://github.com/adobe/himl) to provide a
+[hiera](https://puppet.com/docs/puppet/latest/hiera_intro.html#concept-7256)-like
+configuration structure.
+
+Checkout the [examples](./examples) for more information.
+
+## Nix integration
+
+With kompos you can leverage [nix](https://nixos.org/nix/) to pin your
+infrastructure code (i.e terraform & helmfile releases) on a specific version.
+This enables you to finely control your deployments and use different
+infrastructure versions per environment, cluster etc.
+
+#### Prerequisites
+
+Install `nix` and `nix-prefetch-git`.
+
+```bash
+$ curl -L https://nixos.org/nix/install | bash
+
+$ nix-env -f '<nixpkgs>' -iA nix-prefetch-git
+```
+
+#### Configuration
+
+The integration can be globally enabled or diabled with the flag `nix: [true|false]` and a disable overwrite
+with `--no-nix` argument. Below are the
+necessary parts of komposconfig regarding nix & versioning:
+
+```yaml
+terraform:
+ # This is the place to look for the terraform repo locally.
+ # Used as the default if nix is not enabled.
+ local_path: '/home/user/terraform-stack'
+
+ # This is needed in case the modules are not in the root of the repo.
+ root_path: 'src/terraform'
+
+ repo:
+ # This will be the name of the nix derivation for terraform.
+ name: 'terraform-stack'
+
+ # The repo we would like to version.
+ url: "git@github.com:my-org/terraform-stack.git"
+
+# Likewise for helmfile.
+helmfile:
+ local_path: '/home/user/helmfile-releases'
+ root_path: 'src/helmfiles'
+
+ repo:
+ name: 'helmfile-releases'
+ url: "git@github.com:my-org/helmfile-releases.git"
+
+nix: true
+```
+
+And in the hierarchical configuration you'll need the following keys:
+
+```yaml
+infrastructure:
+ terraform:
+ version: "0.1.0" # A git tag or a commit sha.
+
+ # This is an optional field.
+ # The sha256 hash of the repo provides data integrity and ensures that we
+ # always get the same input.
+ #
+ # It can be omitted when you're using a tag that is periodically updated.
+ # (e.g in a dev/nightly environment). Since this is a mandatory field for nix,
+ # nix-prefetch-git will be used as a fallback to caclulate it.
+ sha256: "ab9190b0ecc8060a54f1fac7de606e6b2c4757c227f2ce529668eb145d9a9516"
+
+ # Likewise for helmfile.
+ helmfile:
+ version: "0.1.0"
+ sha256: "139cd5119d398d06f6535f42d775986a683a90e16ce129a5fb7f48870613a1a5"
+```
+
+### Docker Image
+
+## License
+
+[Apache License 2.0](/LICENSE)
+
+
+
+
+
+
+%prep
+%autosetup -n kompos-0.4.5
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-kompos -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.5-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..8020f38
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+b290a0f8488a45ea2282562f78cbc808 kompos-0.4.5.tar.gz