pip list update
All checks were successful
Build And Test / build-and-push (push) Successful in 2m40s
All checks were successful
Build And Test / build-and-push (push) Successful in 2m40s
This commit is contained in:
@ -47,7 +47,7 @@ class AnsibleTaskViewSet(viewsets.ModelViewSet):
|
|||||||
token = request.headers.get("Authorization", "").replace("Bearer ", "")
|
token = request.headers.get("Authorization", "").replace("Bearer ", "")
|
||||||
ssh_key = get_ssh_key_from_auth_server(token)
|
ssh_key = get_ssh_key_from_auth_server(token)
|
||||||
run_ansible_job(task, ssh_key)
|
run_ansible_job(task, ssh_key)
|
||||||
logger.info(f"[실행 완료] user={user.email}, key_name={key_name}, 작업={self.get_serializer(task).data}")
|
logger.info(f"[실행 완료] user={request.user.email}, 작업={self.get_serializer(task).data}")
|
||||||
|
|
||||||
return Response(self.get_serializer(task).data)
|
return Response(self.get_serializer(task).data)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
@ -1,19 +1,17 @@
|
|||||||
|
ansible==10.7.0
|
||||||
|
ansible-core==2.17.7
|
||||||
asgiref==3.8.1
|
asgiref==3.8.1
|
||||||
certifi==2025.1.31
|
certifi==2025.4.26
|
||||||
cffi==1.17.1
|
cffi==1.17.1
|
||||||
charset-normalizer==3.4.1
|
charset-normalizer==3.4.2
|
||||||
coreapi==2.3.3
|
|
||||||
coreschema==0.0.4
|
|
||||||
cryptography==45.0.2
|
cryptography==45.0.2
|
||||||
Django==4.2.14
|
Django==4.2.14
|
||||||
django-cors-headers==4.7.0
|
django-cors-headers==4.7.0
|
||||||
djangorestframework==3.16.0
|
djangorestframework==3.15.2
|
||||||
djangorestframework_simplejwt==5.5.0
|
djangorestframework_simplejwt==5.5.0
|
||||||
drf-yasg==1.21.10
|
drf-yasg==1.21.10
|
||||||
gunicorn==20.1.0
|
|
||||||
idna==3.10
|
idna==3.10
|
||||||
inflection==0.5.1
|
inflection==0.5.1
|
||||||
itypes==1.2.0
|
|
||||||
Jinja2==3.1.6
|
Jinja2==3.1.6
|
||||||
MarkupSafe==3.0.2
|
MarkupSafe==3.0.2
|
||||||
mysqlclient==2.2.7
|
mysqlclient==2.2.7
|
||||||
@ -24,6 +22,7 @@ python-dotenv==1.0.1
|
|||||||
pytz==2025.2
|
pytz==2025.2
|
||||||
PyYAML==6.0.2
|
PyYAML==6.0.2
|
||||||
requests==2.32.3
|
requests==2.32.3
|
||||||
|
resolvelib==1.0.1
|
||||||
sqlparse==0.5.3
|
sqlparse==0.5.3
|
||||||
typing_extensions==4.13.2
|
typing_extensions==4.13.2
|
||||||
uritemplate==4.1.1
|
uritemplate==4.1.1
|
||||||
|
Reference in New Issue
Block a user