Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Set Configuration Context

kubectl config use-context rk8s

(Question)

You are tasked to write logs of second container in the pod app and write to file /app/second.log

Task

Please complete the following:

  • Create a pod app with two containers, first container busybox image and second container nginx image .

  • Check if the file ./app/second.log is already created and create if needed.

Solution - Click to expand!
#Alias k=kubectl
alias k=kubectl

# Check and create path if needed
mkdir ./app

#Generate yaml file
k run app --image=busybox --dry-run=client -o yaml > app.yaml

# Create pod with two containers.
---
apiVersion: v1
kind: Pod
metadata:
  labels:
    run: app
  name: app
spec:
  containers:
  - image: busybox
    name: first
  - name: second
    image: nginx

# Save the logs to given path
k logs app -c second > ./app/second.log

# Validate the file if it containes logs
cat ./app/second.log 

Output:
--------
        /docker-entrypoint.sh: /docker-entrypoint.d/ is not empty, will attempt to perform configuration
        /docker-entrypoint.sh: Looking for shell scripts in /docker-entrypoint.d/
        /docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
        10-listen-on-ipv6-by-default.sh: info: Getting the checksum of /etc/nginx/conf.d/default.conf
        10-listen-on-ipv6-by-default.sh: info: Enabled listen on IPv6 in /etc/nginx/conf.d/default.conf
        /docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
        /docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
        /docker-entrypoint.sh: Configuration complete; ready for start up