Skip to content

Commit

Permalink
wip: try to fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
geakstr committed Dec 20, 2023
1 parent bd38b66 commit 01ea202
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# BUILDPLATFORM is an automatic platform ARG enabled by Docker BuildKit.
# Represents the plataform where the build is happening, do not mix with
# TARGETARCH
FROM --platform=${BUILDPLATFORM} docker.io/library/node:18-alpine3.18@sha256:435dcad253bb5b7f347ebc69c8cc52de7c912eb7241098b920f2fc2d7843183d as stage1
FROM --platform=${BUILDPLATFORM} docker.io/library/node:18-alpine3.18@sha256:4bdb3f3105718f0742bc8d64bb4e36e8f955ebbee295325e40ae80bc8ef78833 as stage1
RUN apk add bash
WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copyright 2021 Authors of Cilium
# SPDX-License-Identifier: Apache-2.0

ARG GOLANG_IMAGE=docker.io/library/golang:1.21-bullseye@sha256:31848c4f02b08469e159ea1ee664a3f29602418b13e7d67dfd4560d169e14d55
ARG GOLANG_IMAGE=docker.io/library/golang:1.21-bullseye@sha256:cfb0768fb3e3845e95f46f7150630d6eb0930ec10aa9b8ceb16e6f8f581d2d57

# BUILDPLATFORM is an automatic platform ARG enabled by Docker BuildKit.
# Represents the plataform where the build is happening, do not mix with
Expand All @@ -27,7 +27,7 @@ COPY ./build-gops.sh .
RUN --mount=target=/root/.cache,type=cache --mount=target=/go/pkg/mod,type=cache \
./build-gops.sh

FROM docker.io/library/node:18-alpine3.18@sha256:435dcad253bb5b7f347ebc69c8cc52de7c912eb7241098b920f2fc2d7843183d
FROM docker.io/library/node:18-alpine3.18@sha256:4bdb3f3105718f0742bc8d64bb4e36e8f955ebbee295325e40ae80bc8ef78833
# TARGETOS is an automatic platform ARG enabled by Docker BuildKit.
ARG TARGETOS
# TARGETARCH is an automatic platform ARG enabled by Docker BuildKit.
Expand Down
2 changes: 1 addition & 1 deletion backend/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cilium/hubble-ui/backend

go 1.21.4
go 1.21.5

require (
github.com/cilium/cilium v1.15.0-pre.2
Expand Down
6 changes: 3 additions & 3 deletions backend/proto/flow/flow_pb.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import * as jspb from 'google-protobuf'

import * as google_protobuf_any_pb from 'google-protobuf/google/protobuf/any_pb';
import * as google_protobuf_wrappers_pb from 'google-protobuf/google/protobuf/wrappers_pb';
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
import * as google_protobuf_any_pb from 'google-protobuf/google/protobuf/any_pb'; // proto import: "google/protobuf/any.proto"
import * as google_protobuf_wrappers_pb from 'google-protobuf/google/protobuf/wrappers_pb'; // proto import: "google/protobuf/wrappers.proto"
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"


export class Flow extends jspb.Message {
Expand Down
2 changes: 1 addition & 1 deletion backend/proto/observer/observer_grpc_web_pb.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as grpcWeb from 'grpc-web';

import * as observer_observer_pb from '../observer/observer_pb';
import * as observer_observer_pb from '../observer/observer_pb'; // proto import: "observer/observer.proto"


export class ObserverClient {
Expand Down
2 changes: 1 addition & 1 deletion backend/proto/observer/observer_grpc_web_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// Code generated by protoc-gen-grpc-web. DO NOT EDIT.
// versions:
// protoc-gen-grpc-web v1.4.2
// protoc-gen-grpc-web v1.5.0
// protoc v3.11.4
// source: observer/observer.proto

Expand Down
12 changes: 6 additions & 6 deletions backend/proto/observer/observer_pb.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as jspb from 'google-protobuf'

import * as google_protobuf_any_pb from 'google-protobuf/google/protobuf/any_pb';
import * as google_protobuf_wrappers_pb from 'google-protobuf/google/protobuf/wrappers_pb';
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/field_mask_pb';
import * as flow_flow_pb from '../flow/flow_pb';
import * as relay_relay_pb from '../relay/relay_pb';
import * as google_protobuf_any_pb from 'google-protobuf/google/protobuf/any_pb'; // proto import: "google/protobuf/any.proto"
import * as google_protobuf_wrappers_pb from 'google-protobuf/google/protobuf/wrappers_pb'; // proto import: "google/protobuf/wrappers.proto"
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
import * as google_protobuf_field_mask_pb from 'google-protobuf/google/protobuf/field_mask_pb'; // proto import: "google/protobuf/field_mask.proto"
import * as flow_flow_pb from '../flow/flow_pb'; // proto import: "flow/flow.proto"
import * as relay_relay_pb from '../relay/relay_pb'; // proto import: "relay/relay.proto"


export class ServerStatusRequest extends jspb.Message {
Expand Down
2 changes: 1 addition & 1 deletion backend/proto/ui/notifications_pb.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as jspb from 'google-protobuf'

import * as ui_status_pb from '../ui/status_pb';
import * as ui_status_pb from '../ui/status_pb'; // proto import: "ui/status.proto"


export class Notification extends jspb.Message {
Expand Down
4 changes: 2 additions & 2 deletions backend/proto/ui/ui_grpc_web_pb.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as grpcWeb from 'grpc-web';

import * as ui_ui_pb from '../ui/ui_pb';
import * as ui_status_pb from '../ui/status_pb';
import * as ui_ui_pb from '../ui/ui_pb'; // proto import: "ui/ui.proto"
import * as ui_status_pb from '../ui/status_pb'; // proto import: "ui/status.proto"


export class UIClient {
Expand Down
2 changes: 1 addition & 1 deletion backend/proto/ui/ui_grpc_web_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// Code generated by protoc-gen-grpc-web. DO NOT EDIT.
// versions:
// protoc-gen-grpc-web v1.4.2
// protoc-gen-grpc-web v1.5.0
// protoc v3.11.4
// source: ui/ui.proto

Expand Down
8 changes: 4 additions & 4 deletions backend/proto/ui/ui_pb.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as jspb from 'google-protobuf'

import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
import * as flow_flow_pb from '../flow/flow_pb';
import * as ui_notifications_pb from '../ui/notifications_pb';
import * as ui_status_pb from '../ui/status_pb';
import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
import * as flow_flow_pb from '../flow/flow_pb'; // proto import: "flow/flow.proto"
import * as ui_notifications_pb from '../ui/notifications_pb'; // proto import: "ui/notifications.proto"
import * as ui_status_pb from '../ui/status_pb'; // proto import: "ui/status.proto"


export class GetEventsRequest extends jspb.Message {
Expand Down

0 comments on commit 01ea202

Please sign in to comment.