diff --git a/.github/workflows/update-pull-request.yml b/.github/workflows/update-pull-request.yml new file mode 100644 index 000000000000..fe283bef43df --- /dev/null +++ b/.github/workflows/update-pull-request.yml @@ -0,0 +1,31 @@ +name: Actualización del repo oficial sobre la customización +on: + pull_request: + types: + - opened + branches: + - 'release/**' + - 'action/**' +env: + kube_dash_url: https://github.com/kubernetes/dashboard +jobs: + actualizar-sobre-ultimo-repo: + name: update + runs-on: ubuntu-latest + steps: + - name: Clonar última versión del repo oficial + uses: actions/checkout@v4 + - name: Agregar remoto del repo oficial + run: git remote add kube-dash ${{ env.kube_dash_url }} + - name: Obtener cambios del repo oficial + run: git fetch kube-dash release/7.3.2 + - name: Configurar identidad de usuario de Git + run: | + git config --global user.email "${{ github.event.pull_request.user.email }}" + git config --global user.name "${{ github.event.pull_request.user.login }}" + - name: Actualizar rama local desde el repositorio oficial + run: | + git fetch kube-dash release/7.3.2 + git checkout -B release/7.3.2 kube-dash/release/7.3.2 + - name: Empujar cambios a la rama + run: git push origin HEAD diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cf8397daddf2..e8070ca166c7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ Welcome to Kubernetes. We are excited about the prospect of you joining our [com _As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities._ -## Getting Started +## Getting Started EKS To learn more about the project, please read through the following documents: diff --git a/README.md b/README.md index 093a1c77107e..611701fc4283 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Coverage Status](https://codecov.io/github/kubernetes/dashboard/coverage.svg?branch=master)](https://codecov.io/github/kubernetes/dashboard?branch=master) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/kubernetes/dashboard/blob/master/LICENSE) -## Introduction +## Introduction Kubernetes Dashboard is a general purpose, web-based UI for Kubernetes clusters. It allows users to manage applications running in the cluster and troubleshoot them, as well as manage the cluster itself. @@ -16,7 +16,7 @@ can be considered an app version now. ![Dashboard UI workloads page](docs/images/overview.png) -## Installation +## Installation to eks Kubernetes Dashboard supports only Helm-based installation currently as it is faster and gives us better control over all dependencies required by Dashboard to run. We now use a single-container, DBless [Kong](https://hub.docker.com/r/kong/kong-gateway) installation