You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ma...@apache.org on 2023/04/18 22:46:25 UTC

[camel-karavan] branch main updated (a982cfa2 -> e4da7787)

This is an automated email from the ASF dual-hosted git repository.

marat pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


    from a982cfa2 Fix  #705
     new a17ebdb9 Fix examples karavan.yaml
     new e4da7787 Fix  #723

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 karavan-cloud/minikube/karavan.yaml   | 3 ++-
 karavan-cloud/openshift/karavan.yaml  | 3 ++-
 karavan-space/src/space/SpacePage.tsx | 5 ++---
 3 files changed, 6 insertions(+), 5 deletions(-)


[camel-karavan] 02/02: Fix #723

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git

commit e4da7787490e82d40880fedf0aa917800976a91d
Author: Marat Gubaidullin <ma...@gmail.com>
AuthorDate: Tue Apr 18 18:46:13 2023 -0400

    Fix  #723
---
 karavan-space/src/space/SpacePage.tsx | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/karavan-space/src/space/SpacePage.tsx b/karavan-space/src/space/SpacePage.tsx
index f4489121..2aa44536 100644
--- a/karavan-space/src/space/SpacePage.tsx
+++ b/karavan-space/src/space/SpacePage.tsx
@@ -30,6 +30,7 @@ import UploadIcon from "@patternfly/react-icons/dist/esm/icons/upload-icon";
 import {KaravanDesigner} from "../designer/KaravanDesigner";
 import Editor from "@monaco-editor/react";
 import {UploadModal} from "./UploadModal";
+import {EventBus} from "../designer/utils/EventBus";
 
 interface Props {
     name: string,
@@ -74,9 +75,7 @@ export class SpacePage extends React.Component<Props, State> {
     }
 
     downloadImage = () => {
-        if (this.state.karavanDesignerRef) {
-            this.state.karavanDesignerRef.current.downloadImage();
-        }
+        EventBus.sendCommand("downloadImage");
     }
 
     pushToGithub = () => {


[camel-karavan] 01/02: Fix examples karavan.yaml

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git

commit a17ebdb9e83ae7d81d156b4dabc96f9ba4a89983
Author: Marat Gubaidullin <ma...@gmail.com>
AuthorDate: Tue Apr 18 18:35:41 2023 -0400

    Fix examples karavan.yaml
---
 karavan-cloud/minikube/karavan.yaml  | 3 ++-
 karavan-cloud/openshift/karavan.yaml | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/karavan-cloud/minikube/karavan.yaml b/karavan-cloud/minikube/karavan.yaml
index ed20c3af..22aab161 100644
--- a/karavan-cloud/minikube/karavan.yaml
+++ b/karavan-cloud/minikube/karavan.yaml
@@ -8,4 +8,5 @@ spec:
   auth: public
   environment: dev
   runtimes: quarkus,spring-boot
-  nodePort: 30777
\ No newline at end of file
+  nodePort: 30777
+  gitPullInterval: 10s
\ No newline at end of file
diff --git a/karavan-cloud/openshift/karavan.yaml b/karavan-cloud/openshift/karavan.yaml
index 0f7f2482..15d9e313 100644
--- a/karavan-cloud/openshift/karavan.yaml
+++ b/karavan-cloud/openshift/karavan.yaml
@@ -7,4 +7,5 @@ spec:
   instances: 1
   auth: public
   environment: dev
-  runtimes: quarkus,spring-boot
\ No newline at end of file
+  runtimes: quarkus,spring-boot
+  gitPullInterval: 10s
\ No newline at end of file