ashb commented on a change in pull request #13299:
URL: https://github.com/apache/airflow/pull/13299#discussion_r553262823
##########
File path: tests/kubernetes/test_pod_generator.py
##########
@@ -477,14 +478,36 @@ def test_construct_pod_empty_executor_config(self,
mock_uuid):
worker_config.metadata.annotations = self.annotations
worker_config.metadata.labels = self.labels
worker_config.metadata.labels['app'] = 'myapp'
- worker_config.metadata.name = 'pod_id-' + self.static_uuid.hex
+ worker_config.metadata.name = 'pod_id.' + self.static_uuid.hex
worker_config.metadata.namespace = 'namespace'
worker_config.spec.containers[0].env.append(
k8s.V1EnvVar(name="AIRFLOW_IS_K8S_EXECUTOR_POD", value='True')
)
worker_config_result =
self.k8s_client.sanitize_for_serialization(worker_config)
self.assertEqual(worker_config_result, sanitized_result)
+ def ensure_max_label_length(self):
+ path = sys.path[0] +
'/tests/kubernetes/pod_generator_base_with_secrets.yaml'
Review comment:
```suggestion
path = os.path.join(os.path.dirname(__file__),
'pod_generator_base_with_secrets.yaml')
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]