Skip to content
View Saliha067's full-sized avatar
  • Tokyo
Block or Report

Block or report Saliha067

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
Saliha067/README.md

Hi there 👋 . Welcome to my Profile!!! Visitor

  • 🔭 I’m currently working as a Platform Enginner
  • 🌱 CKA , CKAD & Terraform Certified
  • 💬 Ask me about: Kubernetes , Terraform, AWS, Docker & Ansible
  • 📫 How to reach me: LinkedIn

Pinned

  1. awx awx Public

    awx ansible for mobile appium

    Shell

  2. install_mac.sh install_mac.sh
    1
    #!/bin/bash
    2
    
                  
    3
    # author : Saliha
    4
    # date: 2022-01-14
    5
    # version: 1.0
  3. Clean_Pipelines - GitLab Clean_Pipelines - GitLab
    1
    ## Create a [Personal Access Tokens](https://git.XXX.com/-/profile/personal_access_tokens) (scope `api`, `read_repository` and `write_repository`)
    2
    ## Setup your .env (run `cp .env.sample .env` and update `.env` content with your favorite editor)
    3
    ## Run `./clean_old_pipelines.sh` (run `chmod ug+x *.sh` if needed)
    4
    
                  
    5
    TOKEN="xxxxxxxxxxxxxxxxxxxx"  # Personal Access Tokens (Select scopes: api, read_repository, write_repository)
  4. installDocker installDocker
    1
    #!/bin/bash
    2
    
                  
    3
    install_ubuntu() {
    4
        ## Remove any pre installed docker packages :
    5
        sudo service docker stop 
  5. Docker container security Policy Docker container security Policy
    1
    FROM python:3.9.1-alpine AS compile-image. [ 0-Multi Stage ]
    2
    
                  
    3
    LABEL description="No root user, COPY what is needed, no latest, only root users can write, multistage build"
    4
    
                  
    5
    RUN python -m venv /opt/venv