Skip to content

Commit

Permalink
Merge branch 'main' into push-helm-repo-source
Browse files Browse the repository at this point in the history
  • Loading branch information
petar-cvit committed Dec 30, 2024
2 parents 4ef71f7 + 9298f52 commit 7b42b03
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion install/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: cyclops-chart
description: Cyclops Helm chart
type: application
version: "0.12.0"
version: "0.13.0"
appVersion: "v0.15.4"
home: https://cyclops-ui.com/
keywords:
Expand Down
2 changes: 1 addition & 1 deletion install/chart/templates/cyclops-ctrl/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
serviceAccountName: cyclops-ctrl
containers:
- name: cyclops-ctrl
image: cyclopsui/cyclops-ctrl:v0.15.4
image: {{ printf "cyclopsui/cyclops-ctrl:%s" (default .Chart.AppVersion (.Values.image).tag) }}
ports:
- containerPort: 8080
env:
Expand Down
2 changes: 1 addition & 1 deletion install/chart/templates/cyclops-ui/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
spec:
containers:
- name: cyclops-ui
image: cyclopsui/cyclops-ui:v0.15.4
image: {{ printf "cyclopsui/cyclops-ui:%s" (default .Chart.AppVersion (.Values.image).tag) }}
ports:
- containerPort: 80
env:
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/pricing.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import Layout from "@theme/Layout";
import { Card, Button, Typography, Row, Col, ConfigProvider } from "antd";
import CalendlyWidget from "../components/CalendlyWidget";
import styles from "./index.module.css";
import yaml from "/static/img/yaml_background.png";
import AdoptersPlanSignup from "../components/AdoptersPlanSignup/AdoptersPlanSignup";
import CalendlyWidget from "../components/CalendlyWidget";

const { Paragraph } = Typography;

Expand Down

0 comments on commit 7b42b03

Please sign in to comment.