Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/serverless-operator-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: pull-serverless-operator-build

on:
pull_request_target:
types: [ opened, edited, synchronize, reopened, ready_for_review ]

permissions:
id-token: write # This is required for requesting the JWT token
contents: read # This is required for actions/checkout

jobs:
build-image:
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main
with:
name: serverless-operator/ga
dockerfile: components/operator/Dockerfile
context: .
test-image:
runs-on: ubuntu-latest
needs: build-image
steps:
- name: Test image
run: echo "Testing images ${{ needs.build-image.outputs.images }}"
2 changes: 1 addition & 1 deletion components/operator/internal/registry/node_port_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func TestNodePortAction(t *testing.T) {
givenService: fixtureServiceNodePort(dockerRegistryService, kymaNamespace, nonConflictPort),
expectedPort: nonConflictPort,
},
"Return default port new port when nodePort not installed, without port conflict": {
"Return default port new port when nodePort not installed test, without port conflict": {
expectedPort: dockerRegistryNodePort,
},
"Generate new port when nodePort not installed, with port conflict": {
Expand Down