Skip to content
View adewaleafolabi's full-sized avatar

Block or report adewaleafolabi

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. portfolio-go portfolio-go Public

    A QUICK tool to help track asset prices

    Vue

  2. Yoruba names array Yoruba names array
    1
    [
    2
      {
    3
        "id": "bf854883-74cb-47b3-939d-3dc6afe50b23",
    4
        "name": "Àánú"
    5
      },
  3. Kubectl Cheatsheet Kubectl Cheatsheet
    1
    Copy kubernetes secrets from Cluster1 to Cluster2 stripping out Cluster1 specific details. This also requires a file containing namespaces
    2
    
                  
    3
    ```sh
    4
    while read F; do  kubectl get secret secret-name -o yaml -n $F --context=cluster-1 > $F.yaml && yaml_cli -f $F.yaml -d metadata:annotations:kubectl.kubernetes.io/last-applied-configuration -d metadata:creationTimestamp -d metadata:resourceVersion -d metadata:selfLink -d metadata:uid  && kubectl apply -f $F.yaml -n $F  --context=cluster-2; done < ns.txt
    5
    ```