Skip to content

Commit

Permalink
Merge pull request #142 from sepich/networking-v1-ingress
Browse files Browse the repository at this point in the history
Skip parsing for Ingress
  • Loading branch information
seleznev committed Sep 14, 2021
2 parents b484e46 + 5e01e83 commit 69a47a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions k8s_handle/k8s/adapters.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

class Adapter:
api_versions = {
'apps/v1beta1': client.AppsV1beta1Api,
'v1': client.CoreV1Api,
'extensions/v1beta1': client.ExtensionsV1beta1Api,
'batch/v1': client.BatchV1Api,
Expand All @@ -40,7 +39,7 @@ class Adapter:
}
kinds_builtin = [
'ConfigMap', 'CronJob', 'DaemonSet', 'Deployment', 'Endpoints',
'Ingress', 'Job', 'Namespace', 'PodDisruptionBudget', 'ResourceQuota',
'Job', 'Namespace', 'PodDisruptionBudget', 'ResourceQuota',
'Secret', 'Service', 'ServiceAccount', 'StatefulSet', 'StorageClass',
'PersistentVolume', 'PersistentVolumeClaim', 'HorizontalPodAutoscaler',
'Role', 'RoleBinding', 'ClusterRole', 'ClusterRoleBinding', 'CustomResourceDefinition',
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests==2.25.0
jinja2==2.11.3
PyYAML==5.4
kubernetes==12.0.1
PyYAML==5.4.1
kubernetes==18.20.0
semver==2.13.0

0 comments on commit 69a47a0

Please sign in to comment.