From 71b14401e90d55cb50cce87fa7ebf7d79fd21914 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Thu, 23 Feb 2023 11:21:36 +0800 Subject: [PATCH] add helm-builder-alpine && kube-tools-alpine --- .github/workflows/helm-builder-alpine.yaml | 32 +++++++ ...ase-alpine.yaml => kube-tools-alpine.yaml} | 14 +-- .../.gitlab-ci.yml | 0 oci/app-runner/helm-builder-alpine/Dockerfile | 26 ++++++ .../Makefile | 0 .../README.md | 0 .../ca.crt | 0 .../repositories | 0 .../kube-tools-alpine/.gitlab-ci.yml | 16 ++++ .../Dockerfile | 0 oci/app-runner/kube-tools-alpine/Makefile | 3 + oci/app-runner/kube-tools-alpine/README.md | 92 +++++++++++++++++++ oci/app-runner/kube-tools-alpine/ca.crt | 71 ++++++++++++++ oci/app-runner/kube-tools-alpine/repositories | 3 + 14 files changed, 250 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/helm-builder-alpine.yaml rename .github/workflows/{kube-base-alpine.yaml => kube-tools-alpine.yaml} (63%) rename oci/app-runner/{kube-base-alpine => helm-builder-alpine}/.gitlab-ci.yml (100%) create mode 100644 oci/app-runner/helm-builder-alpine/Dockerfile rename oci/app-runner/{kube-base-alpine => helm-builder-alpine}/Makefile (100%) rename oci/app-runner/{kube-base-alpine => helm-builder-alpine}/README.md (100%) rename oci/app-runner/{kube-base-alpine => helm-builder-alpine}/ca.crt (100%) rename oci/app-runner/{kube-base-alpine => helm-builder-alpine}/repositories (100%) create mode 100644 oci/app-runner/kube-tools-alpine/.gitlab-ci.yml rename oci/app-runner/{kube-base-alpine => kube-tools-alpine}/Dockerfile (100%) create mode 100755 oci/app-runner/kube-tools-alpine/Makefile create mode 100644 oci/app-runner/kube-tools-alpine/README.md create mode 100644 oci/app-runner/kube-tools-alpine/ca.crt create mode 100755 oci/app-runner/kube-tools-alpine/repositories diff --git a/.github/workflows/helm-builder-alpine.yaml b/.github/workflows/helm-builder-alpine.yaml new file mode 100644 index 0000000..a98c25c --- /dev/null +++ b/.github/workflows/helm-builder-alpine.yaml @@ -0,0 +1,32 @@ +name: Build & push helm builder apline base image +on: + pull_request: + push: + paths: + - '.github/workflows/helm-builder-alpine.yaml' + - 'oci/app-runner/helm-builder-alpine/ca.crt' + - 'oci/app-runner/helm-builder-alpine/Makefile' + - 'oci/app-runner/helm-builder-alpine/Dockerfile' + - 'oci/app-runner/helm-buidler-alpine/repositories' + branches: + - main + +jobs: + base-image: + runs-on: ubuntu-latest + name: build helm builder alpine base image + steps: + - uses: actions/checkout@master + + - name: 'Artifact: build && push helm builder alpine base image' + uses: aevea/action-kaniko@master + with: + registry: artifact.onwalk.net + username: admin + password: ${{ secrets.HELM_REPO_PASSWORD }} + path: 'oci/app-runner/helm-builder-alpine/' + build_file: 'Dockerfile' + image: devops/helm-builder-alpine + tag: latest + cache: false + cache_registry: cache diff --git a/.github/workflows/kube-base-alpine.yaml b/.github/workflows/kube-tools-alpine.yaml similarity index 63% rename from .github/workflows/kube-base-alpine.yaml rename to .github/workflows/kube-tools-alpine.yaml index 6ff3e96..7aeb7f2 100644 --- a/.github/workflows/kube-base-alpine.yaml +++ b/.github/workflows/kube-tools-alpine.yaml @@ -3,11 +3,11 @@ on: pull_request: push: paths: - - '.github/workflows/kube-base-alpine.yaml' - - 'oci/app-runner/kube-base-alpine/ca.crt' - - 'oci/app-runner/kube-base-alpine/Makefile' - - 'oci/app-runner/kube-base-alpine/Dockerfile' - - 'oci/app-runner/kube-base-alpine/repositories' + - '.github/workflows/kube-tools-alpine.yaml' + - 'oci/app-runner/kube-tools-alpine/ca.crt' + - 'oci/app-runner/kube-tools-alpine/Makefile' + - 'oci/app-runner/kube-tools-alpine/Dockerfile' + - 'oci/app-runner/kube-tools-alpine/repositories' branches: - main @@ -24,9 +24,9 @@ jobs: registry: artifact.onwalk.net username: admin password: ${{ secrets.HELM_REPO_PASSWORD }} - path: 'oci/app-runner/kube-base-alpine/' + path: 'oci/app-runner/kube-tools-alpine/' build_file: 'Dockerfile' - image: devops/kube-base-alpine + image: devops/kube-tools-alpine tag: latest cache: false cache_registry: cache diff --git a/oci/app-runner/kube-base-alpine/.gitlab-ci.yml b/oci/app-runner/helm-builder-alpine/.gitlab-ci.yml similarity index 100% rename from oci/app-runner/kube-base-alpine/.gitlab-ci.yml rename to oci/app-runner/helm-builder-alpine/.gitlab-ci.yml diff --git a/oci/app-runner/helm-builder-alpine/Dockerfile b/oci/app-runner/helm-builder-alpine/Dockerfile new file mode 100644 index 0000000..765d8e1 --- /dev/null +++ b/oci/app-runner/helm-builder-alpine/Dockerfile @@ -0,0 +1,26 @@ +FROM alpine:latest +MAINTAINER shenlan xz@onwalk.net + +ENV VERSION=3.11.1 +ENV BASE_URL="https://get.helm.sh" + +ADD ca.crt /usr/share/ca-certificates/mozilla/Lets_Encrypt_ca.crt +RUN echo "mozilla/Lets_Encrypt_ca.crt" >> /etc/ca-certificates.conf && update-ca-certificates + +RUN case `uname -m` in \ + armv7l) ARCH=arm; ;; \ + s390x) ARCH=s390x; ;; \ + x86_64) ARCH=amd64; ;; \ + aarch64) ARCH=arm64; ;; \ + ppc64le) ARCH=ppc64le; ;; \ + *) echo "un-supported arch, exit ..."; exit 1; ;; \ + esac && \ + apk add --update --no-cache openssh bash wget make curl jq unzip zip git ca-certificates && \ + wget ${BASE_URL}/helm-v${VERSION}-linux-${ARCH}.tar.gz -O - | tar -xz && \ + mv linux-${ARCH}/helm /usr/bin/helm && \ + chmod +x /usr/bin/helm && \ + rm -rf linux-${ARCH} && \ + chmod 755 /usr//bin/helm && \ + helm plugin install https://github.com/chartmuseum/helm-push.git + +CMD ["/bin/sh"] diff --git a/oci/app-runner/kube-base-alpine/Makefile b/oci/app-runner/helm-builder-alpine/Makefile similarity index 100% rename from oci/app-runner/kube-base-alpine/Makefile rename to oci/app-runner/helm-builder-alpine/Makefile diff --git a/oci/app-runner/kube-base-alpine/README.md b/oci/app-runner/helm-builder-alpine/README.md similarity index 100% rename from oci/app-runner/kube-base-alpine/README.md rename to oci/app-runner/helm-builder-alpine/README.md diff --git a/oci/app-runner/kube-base-alpine/ca.crt b/oci/app-runner/helm-builder-alpine/ca.crt similarity index 100% rename from oci/app-runner/kube-base-alpine/ca.crt rename to oci/app-runner/helm-builder-alpine/ca.crt diff --git a/oci/app-runner/kube-base-alpine/repositories b/oci/app-runner/helm-builder-alpine/repositories similarity index 100% rename from oci/app-runner/kube-base-alpine/repositories rename to oci/app-runner/helm-builder-alpine/repositories diff --git a/oci/app-runner/kube-tools-alpine/.gitlab-ci.yml b/oci/app-runner/kube-tools-alpine/.gitlab-ci.yml new file mode 100644 index 0000000..0ed3c48 --- /dev/null +++ b/oci/app-runner/kube-tools-alpine/.gitlab-ci.yml @@ -0,0 +1,16 @@ +stages: + - build + +build-image-job: + stage: build + image: + name: artifact.onwalk.net/k8s/kaniko-executor:debug + entrypoint: [""] + script: + - mkdir -p /kaniko/.docker + - echo "{\"auths\":{\"artifact.onwalk.net/k8s\":{\"auth\":\"$(printf "%s:%s" "admin" "${PASSWORD}" | base64 | tr -d '\n')\"}}}" > /kaniko/.docker/config.json + - >- + /kaniko/executor + --context "${CI_PROJECT_DIR}" + --dockerfile "${CI_PROJECT_DIR}/Dockerfile" + --destination "artifact.onwalk.net/devops/alpine-ci-runner:latest" diff --git a/oci/app-runner/kube-base-alpine/Dockerfile b/oci/app-runner/kube-tools-alpine/Dockerfile similarity index 100% rename from oci/app-runner/kube-base-alpine/Dockerfile rename to oci/app-runner/kube-tools-alpine/Dockerfile diff --git a/oci/app-runner/kube-tools-alpine/Makefile b/oci/app-runner/kube-tools-alpine/Makefile new file mode 100755 index 0000000..c80048f --- /dev/null +++ b/oci/app-runner/kube-tools-alpine/Makefile @@ -0,0 +1,3 @@ +all: + docker build --network host --no-cache --build-arg VERSION=3.6.0 -t artifact.onwalk.net/k8s/ci-runner:v3.6.2 . + docker push artifact.onwalk.net/k8s/ci-runner:v3.6.2 diff --git a/oci/app-runner/kube-tools-alpine/README.md b/oci/app-runner/kube-tools-alpine/README.md new file mode 100644 index 0000000..1739289 --- /dev/null +++ b/oci/app-runner/kube-tools-alpine/README.md @@ -0,0 +1,92 @@ +# ci-runner + + + +## Getting started + +To make it easy for you to get started with GitLab, here's a list of recommended next steps. + +Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! + +## Add your files + +- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files +- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: + +``` +cd existing_repo +git remote add origin https://gitlab.onwalk.net/root/ci-runner.git +git branch -M main +git push -uf origin main +``` + +## Integrate with your tools + +- [ ] [Set up project integrations](https://gitlab.onwalk.net/root/ci-runner/-/settings/integrations) + +## Collaborate with your team + +- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) +- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) +- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) +- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) +- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) + +## Test and Deploy + +Use the built-in continuous integration in GitLab. + +- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) +- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) +- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) +- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) +- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) + +*** + +# Editing this README + +When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template. + +## Suggestions for a good README +Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. + +## Name +Choose a self-explaining name for your project. + +## Description +Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. + +## Badges +On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. + +## Visuals +Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. + +## Installation +Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. + +## Usage +Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. + +## Support +Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. + +## Roadmap +If you have ideas for releases in the future, it is a good idea to list them in the README. + +## Contributing +State if you are open to contributions and what your requirements are for accepting them. + +For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. + +You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. + +## Authors and acknowledgment +Show your appreciation to those who have contributed to the project. + +## License +For open source projects, say how it is licensed. + +## Project status +If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. diff --git a/oci/app-runner/kube-tools-alpine/ca.crt b/oci/app-runner/kube-tools-alpine/ca.crt new file mode 100644 index 0000000..f6a9302 --- /dev/null +++ b/oci/app-runner/kube-tools-alpine/ca.crt @@ -0,0 +1,71 @@ +-----BEGIN CERTIFICATE----- +MIIG1TCCBL2gAwIBAgIQbFWr29AHksedBwzYEZ7WvzANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMjAw +MTMwMDAwMDAwWhcNMzAwMTI5MjM1OTU5WjBLMQswCQYDVQQGEwJBVDEQMA4GA1UE +ChMHWmVyb1NTTDEqMCgGA1UEAxMhWmVyb1NTTCBSU0EgRG9tYWluIFNlY3VyZSBT +aXRlIENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAhmlzfqO1Mdgj +4W3dpBPTVBX1AuvcAyG1fl0dUnw/MeueCWzRWTheZ35LVo91kLI3DDVaZKW+TBAs +JBjEbYmMwcWSTWYCg5334SF0+ctDAsFxsX+rTDh9kSrG/4mp6OShubLaEIUJiZo4 +t873TuSd0Wj5DWt3DtpAG8T35l/v+xrN8ub8PSSoX5Vkgw+jWf4KQtNvUFLDq8mF +WhUnPL6jHAADXpvs4lTNYwOtx9yQtbpxwSt7QJY1+ICrmRJB6BuKRt/jfDJF9Jsc +RQVlHIxQdKAJl7oaVnXgDkqtk2qddd3kCDXd74gv813G91z7CjsGyJ93oJIlNS3U +gFbD6V54JMgZ3rSmotYbz98oZxX7MKbtCm1aJ/q+hTv2YK1yMxrnfcieKmOYBbFD +hnW5O6RMA703dBK92j6XRN2EttLkQuujZgy+jXRKtaWMIlkNkWJmOiHmErQngHvt +iNkIcjJumq1ddFX4iaTI40a6zgvIBtxFeDs2RfcaH73er7ctNUUqgQT5rFgJhMmF +x76rQgB5OZUkodb5k2ex7P+Gu4J86bS15094UuYcV09hVeknmTh5Ex9CBKipLS2W +2wKBakf+aVYnNCU6S0nASqt2xrZpGC1v7v6DhuepyyJtn3qSV2PoBiU5Sql+aARp +wUibQMGm44gjyNDqDlVp+ShLQlUH9x8CAwEAAaOCAXUwggFxMB8GA1UdIwQYMBaA +FFN5v1qqK0rPVIDh2JvAnfKyA2bLMB0GA1UdDgQWBBTI2XhootkZaNU9ct5fCj7c +tYaGpjAOBgNVHQ8BAf8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHSUE +FjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwIgYDVR0gBBswGTANBgsrBgEEAbIxAQIC +TjAIBgZngQwBAgEwUAYDVR0fBEkwRzBFoEOgQYY/aHR0cDovL2NybC51c2VydHJ1 +c3QuY29tL1VTRVJUcnVzdFJTQUNlcnRpZmljYXRpb25BdXRob3JpdHkuY3JsMHYG +CCsGAQUFBwEBBGowaDA/BggrBgEFBQcwAoYzaHR0cDovL2NydC51c2VydHJ1c3Qu +Y29tL1VTRVJUcnVzdFJTQUFkZFRydXN0Q0EuY3J0MCUGCCsGAQUFBzABhhlodHRw +Oi8vb2NzcC51c2VydHJ1c3QuY29tMA0GCSqGSIb3DQEBDAUAA4ICAQAVDwoIzQDV +ercT0eYqZjBNJ8VNWwVFlQOtZERqn5iWnEVaLZZdzxlbvz2Fx0ExUNuUEgYkIVM4 +YocKkCQ7hO5noicoq/DrEYH5IuNcuW1I8JJZ9DLuB1fYvIHlZ2JG46iNbVKA3ygA +Ez86RvDQlt2C494qqPVItRjrz9YlJEGT0DrttyApq0YLFDzf+Z1pkMhh7c+7fXeJ +qmIhfJpduKc8HEQkYQQShen426S3H0JrIAbKcBCiyYFuOhfyvuwVCFDfFvrjADjd +4jX1uQXd161IyFRbm89s2Oj5oU1wDYz5sx+hoCuh6lSs+/uPuWomIq3y1GDFNafW ++LsHBU16lQo5Q2yh25laQsKRgyPmMpHJ98edm6y2sHUabASmRHxvGiuwwE25aDU0 +2SAeepyImJ2CzB80YG7WxlynHqNhpE7xfC7PzQlLgmfEHdU+tHFeQazRQnrFkW2W +kqRGIq7cKRnyypvjPMkjeiV9lRdAM9fSJvsB3svUuu1coIG1xxI1yegoGM4r5QP4 +RGIVvYaiI76C0djoSbQ/dkIUUXQuB8AL5jyH34g3BZaaXyvpmnV4ilppMXVAnAYG +ON51WhJ6W0xNdNJwzYASZYH+tmCWI+N60Gv2NNMGHwMZ7e9bXgzUCZH5FaBFDGR5 +S9VWqHB73Q+OyIVvIbKYcSc2w/aSuFKGSA== +-----END CERTIFICATE----- +-----BEGIN CERTIFICATE----- +MIIFgTCCBGmgAwIBAgIQOXJEOvkit1HX02wQ3TE1lTANBgkqhkiG9w0BAQwFADB7 +MQswCQYDVQQGEwJHQjEbMBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYD +VQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UE +AwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTE5MDMxMjAwMDAwMFoXDTI4 +MTIzMTIzNTk1OVowgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpOZXcgSmVyc2V5 +MRQwEgYDVQQHEwtKZXJzZXkgQ2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBO +ZXR3b3JrMS4wLAYDVQQDEyVVU0VSVHJ1c3QgUlNBIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAgBJlFzYOw9sI +s9CsVw127c0n00ytUINh4qogTQktZAnczomfzD2p7PbPwdzx07HWezcoEStH2jnG +vDoZtF+mvX2do2NCtnbyqTsrkfjib9DsFiCQCT7i6HTJGLSR1GJk23+jBvGIGGqQ +Ijy8/hPwhxR79uQfjtTkUcYRZ0YIUcuGFFQ/vDP+fmyc/xadGL1RjjWmp2bIcmfb +IWax1Jt4A8BQOujM8Ny8nkz+rwWWNR9XWrf/zvk9tyy29lTdyOcSOk2uTIq3XJq0 +tyA9yn8iNK5+O2hmAUTnAU5GU5szYPeUvlM3kHND8zLDU+/bqv50TmnHa4xgk97E +xwzf4TKuzJM7UXiVZ4vuPVb+DNBpDxsP8yUmazNt925H+nND5X4OpWaxKXwyhGNV +icQNwZNUMBkTrNN9N6frXTpsNVzbQdcS2qlJC9/YgIoJk2KOtWbPJYjNhLixP6Q5 +D9kCnusSTJV882sFqV4Wg8y4Z+LoE53MW4LTTLPtW//e5XOsIzstAL81VXQJSdhJ +WBp/kjbmUZIO8yZ9HE0XvMnsQybQv0FfQKlERPSZ51eHnlAfV1SoPv10Yy+xUGUJ +5lhCLkMaTLTwJUdZ+gQek9QmRkpQgbLevni3/GcV4clXhB4PY9bpYrrWX1Uu6lzG +KAgEJTm4Diup8kyXHAc/DVL17e8vgg8CAwEAAaOB8jCB7zAfBgNVHSMEGDAWgBSg +EQojPpbxB+zirynvgqV/0DCktDAdBgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rID +ZsswDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wEQYDVR0gBAowCDAG +BgRVHSAAMEMGA1UdHwQ8MDowOKA2oDSGMmh0dHA6Ly9jcmwuY29tb2RvY2EuY29t +L0FBQUNlcnRpZmljYXRlU2VydmljZXMuY3JsMDQGCCsGAQUFBwEBBCgwJjAkBggr +BgEFBQcwAYYYaHR0cDovL29jc3AuY29tb2RvY2EuY29tMA0GCSqGSIb3DQEBDAUA +A4IBAQAYh1HcdCE9nIrgJ7cz0C7M7PDmy14R3iJvm3WOnnL+5Nb+qh+cli3vA0p+ +rvSNb3I8QzvAP+u431yqqcau8vzY7qN7Q/aGNnwU4M309z/+3ri0ivCRlv79Q2R+ +/czSAaF9ffgZGclCKxO/WIu6pKJmBHaIkU4MiRTOok3JMrO66BQavHHxW/BBC5gA +CiIDEOUMsfnNkjcZ7Tvx5Dq2+UUTJnWvu6rvP3t3O9LEApE9GQDTF1w52z97GA1F +zZOFli9d31kWTz9RvdVFGD/tSo7oBmF0Ixa1DVBzJ0RHfxBdiSprhTEUxOipakyA +vGp4z7h/jnZymQyd/teRCBaho1+V +-----END CERTIFICATE----- diff --git a/oci/app-runner/kube-tools-alpine/repositories b/oci/app-runner/kube-tools-alpine/repositories new file mode 100755 index 0000000..50d843e --- /dev/null +++ b/oci/app-runner/kube-tools-alpine/repositories @@ -0,0 +1,3 @@ +https://mirrors.ustc.edu.cn/alpine/v3.16/main +https://mirrors.ustc.edu.cn/alpine/v3.16/community +https://mirrors.ustc.edu.cn/alpine/edge/testing