25 lines
718 B
Python
25 lines
718 B
Python
from flask import request
|
|
|
|
from kubeflow.kubeflow.crud_backend import api, decorators, logging
|
|
|
|
from ...common import form
|
|
from . import bp
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
@bp.route("/api/namespaces/<namespace>/pvcs", methods=["POST"])
|
|
@decorators.request_is_json_type
|
|
@decorators.required_body_params("name", "mode", "class", "size", "type")
|
|
def post_pvc(namespace):
|
|
body = request.get_json()
|
|
log.info("Received body: %s", body)
|
|
|
|
pvc = form.pvc_from_dict(body, namespace)
|
|
|
|
log.info("Creating PVC '%s'...", pvc)
|
|
api.create_pvc(pvc, namespace)
|
|
log.info("Successfully created PVC %s/%s", namespace, pvc.metadata.name)
|
|
|
|
return api.success_response("message", "PVC created successfully.")
|