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

changes checking modified events with last-modified annotations #6

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ test-bin/
.env
*.swp
.ansible
.pytest_cache/
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ Junipernetworks EDA source Collection Release Notes

.. contents:: Topics

v1.4.5
=======

Minor Changes
-------------

- Edge case fix when last-applied-configuration is not present in the event and the event is a MODIFIED event.


v1.4.4
=======

Expand Down
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ name = "pypi"
# Packages in this list should ~=, used to generate requirements.txt

[packages]
kubernetes-asyncio = "*"
kubernetes = "*"
kubernetes-asyncio = "31.1.1"
kubernetes = "31.0.0"

[dev-packages]
pytest-asyncio = "*"
Expand Down
1,030 changes: 529 additions & 501 deletions Pipfile.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/juniper.eda.k8s_source_plugin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ Notes

.. note::
- To avoid SSL certificate validation errors when ``validate_certs`` is *True*, the full certificate chain for the API server must be provided via ``ca_cert`` or in the kubeconfig file.
- changed_fields will works only for MODIFIED events which has annotations kubectl.kubernetes.io/last-applied-configuration.



Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace: juniper

name: eda

version: 1.4.4
version: 1.4.5

readme: README.md

Expand Down
19 changes: 16 additions & 3 deletions plugins/event_source/k8s.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,9 +604,20 @@ def get_nested_value(d, keys):
"{}",
)
)
last_applied_configuration = json.loads(
last_applied_configuration_str
)
# Check if the fields in changed_fields is present and If present, check if last-applied-configuration is present
# parse it as JSON
# If not present, skip the event
if last_applied_configuration_str:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need a comment above.

last_applied_configuration = json.loads(
last_applied_configuration_str
)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May want to add a debug log here. After that, continue to avoid falling into the other logic.

else:
self.logger.debug(
"No last-applied-configuration found, skipping event",
object_name,
self.changed_fields,
)
continue
if any(
get_nested_value(
last_applied_configuration, field.split(".")
Expand All @@ -622,6 +633,7 @@ def get_nested_value(d, keys):
else:
self.logger.debug(
"No change detected in fields %s, skipping event",
object_name,
self.changed_fields,
)
continue
Expand All @@ -633,6 +645,7 @@ def get_nested_value(d, keys):
self.logger.debug(
"Ignoring MODIFIED event for deleted object %s",
object_name,
self.changed_fields,
)
continue

Expand Down
47 changes: 46 additions & 1 deletion plugins/event_source/test_k8s.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Timeout constants
INIT_DONE_TIMEOUT = 10
POD_CREATION_TIMEOUT = 60
POD_CREATION_TIMEOUT = 90
NAMESPACE_CREATION_TIMEOUT = 10
HEARTBEAT_INTERVAL = 3

Expand Down Expand Up @@ -387,13 +387,58 @@ async def wait_for_event(
},
],
},
{
"args": {
"kind": "ConfigMap",
"changed_fields": ["data", "metadata.annotations.foo"],
"kubeconfig": KUBECONFIG,
"test_events_qty": 2,
"heartbeat_interval": HEARTBEAT_INTERVAL,
},
"created_watch_count": 1,
"modified_watch_count": 1,
"deleted_watch_count": 0,
"k8sclient_objects": [
{
"method": "create_namespaced_config_map",
"body": {
"apiVersion": "v1",
"kind": "ConfigMap",
"metadata": {
"name": "no-last-applied-config",
"namespace": "pytest",
"description": "CONFIG MAP WITHOUT LAST APPLIED CONFIG",
},
"data": {
"key": "value",
},
},
},
{
"method": "patch_namespaced_config_map",
"body": {
"apiVersion": "v1",
"kind": "ConfigMap",
"metadata": {
"name": "no-last-applied-config",
"namespace": "pytest",
"description": "UPDATED CONFIG MAP WITHOUT LAST APPLIED CONFIG",
},
"data": {
"key": "new-value",
},
},
},
],
},
],
ids=[
"create_namespace_kind",
"create_namespace_configmap_kinds",
"modify_configmap_changed_fields",
"modify_deleted_pod",
"ignore_modify_deleted_pod",
"modify_configmap_no_last_applied_config",
],
)
async def test_batch(k8s_client, test_case):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-i https://pypi.org/simple
kubernetes==31.0.0; python_version >= '3.6'
kubernetes-asyncio==32.0.0
kubernetes-asyncio==31.1.1