Hey folks, Every time I try to copy-paste some code like the one below for insta . . .

kartik_kube:
Hey folks,
Every time I try to copy-paste some code like the one below for instance into my existing yml file it doesn’t retain the indentation.
Any points on how I can retain the indentation in the exam? Otherwise, I end up typing this whole thing, which is prone to error and takes a lot of time.

  affinity:
    nodeAffinity:
      requiredDuringSchedulingIgnoredDuringExecution:
        nodeSelectorTerms:
        - matchExpressions:
          - key: <http://kubernetes.io/e2e-az-name|kubernetes.io/e2e-az-name>
            operator: In
            values:
            - e2e-az1
            - e2e-az2

Robel Fesshaye:
not sure why it always doesn’t work for you, for me it only breaks up only sometimes and works most of the time but in the exam you will be provided a notepad and would be good to paste to the notepad and do the edits then copy the code to the terminal. In addition, in vim/vi :set list will show you where you have tabs instead of spaces and that will be helpful in the exam when u copy and paste yaml code.

kartik_kube:
awesome thanks!