Skip to content

Update README.md

Update README.md #29

name: test-oblt-cli-cluster-create-custom-gitops
on:
workflow_dispatch:
inputs:
dry-run:
description: 'Dry run'
required: true
default: false
type: boolean
push:
paths:
- '.github/workflows/test-oblt-cli-cluster-create-custom-gitops.yml'
- 'oblt-cli/cluster-create-custom/**'
permissions:
contents: read
id-token: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- if: github.event_name == 'workflow_dispatch' && github.event.inputs.dry-run == 'true'
uses: elastic/oblt-actions/google/auth@v1
- uses: elastic/oblt-actions/git/setup@v1
- uses: ./oblt-cli/cluster-create-custom
with:
github-token: ${{ secrets.OBLT_CLI_GITHUB_TOKEN }}
template: 'deploy-kibana'
cluster-name-prefix: 'testgithubaction'
gitops: true
dry-run: ${{ github.event.inputs.dry-run != '' && github.event.inputs.dry-run || true }}
parameters: '{"RemoteClusterName":"release-oblt","StackVersion":"8.7.0","KibanaDockerImage":"docker.elastic.co/observability-ci/kibana-cloud:8.7.0-SNAPSHOT"}'