{% extends "base.html" %} {% block title %}{{ resource.name }} ({{resource.kind}}{% if namespace: %} in {{namespace}}{% endif %}){% endblock %} {% block content %}

{{ resource.name }}

{% if not show_container_logs: %}

Container Logs Disabled

Container logs are not shown as they were disabled in Kubernetes Web View. Enable them via the "--show-container-logs" kube-web-view command line option.
{% else: %}
Showing last {{ tail_lines }} log lines per container for {{ pods|length }} pods.
{% for log in logs: %}{{ log[1] }} {{ log[3] }} {{ log[0] }}{{ '\n' }}{% endfor %}
{% endif %} {% endblock %}