This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { LibraryComponents } from '../types'; | |
| import { materialUILibrary } from './materialUI'; | |
| export const ALL_LIBRARIES: LibraryComponents[] = [ | |
| materialUILibrary | |
| ]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { LibraryComponents } from '../types'; | |
| export const materialUILibrary: LibraryComponents = { | |
| library: { | |
| name: 'material-ui', | |
| packageName: '@mui/material', | |
| displayName: 'Material UI', | |
| framework: 'react' | |
| }, | |
| components: [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export interface UILibrary { | |
| name: string; | |
| packageName: string | string[]; | |
| displayName: string; | |
| framework: 'react' | 'vue' | 'svelte' | 'angular'; | |
| } | |
| export interface ComponentSnippet { | |
| name: string; // e.g. "mui-button" | |
| displayName: string; // e.g. "Button" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| extends: default | |
| rules: | |
| comments: | |
| min-spaces-from-content: 1 | |
| line-length: | |
| max: 150 | |
| braces: | |
| min-spaces-inside: 0 | |
| max-spaces-inside: 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| language: python | |
| env: | |
| global: | |
| - HELM_URL=https://storage.googleapis.com/kubernetes-helm | |
| - HELM_TGZ=helm-v2.4.2-linux-amd64.tar.gz | |
| - REPO_DIR=/home/travis/build/inyee786/test-helm | |
| - YAMLLINT_VERSION=1.8.1 | |
| - HARBOR_CHART_URL=https://{***domain***}/chartrepo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "annotations": { | |
| "list": [ | |
| { | |
| "builtIn": 1, | |
| "datasource": "-- Grafana --", | |
| "enable": true, | |
| "hide": true, | |
| "iconColor": "rgba(0, 211, 255, 1)", | |
| "name": "Annotations & Alerts", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "annotations": { | |
| "list": [ | |
| { | |
| "builtIn": 1, | |
| "datasource": "-- Grafana --", | |
| "enable": true, | |
| "hide": false, | |
| "iconColor": "#e0752d", | |
| "limit": 100, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| labels: | |
| service-label-key: service-label-value | |
| name: service-name-loadbalancer | |
| spec: | |
| type: LoadBalancer | |
| ports: | |
| - name: service-port-name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| labels: | |
| service-label-key: service-label-value | |
| name: service-name | |
| spec: | |
| type: ClusterIP | |
| ports: | |
| - name: service-port-name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: apps/v1beta1 | |
| kind: Deployment | |
| metadata: | |
| name: deployment-name | |
| spec: | |
| replicas: 1 | |
| template: | |
| metadata: | |
| labels: | |
| label-key : label-value |
NewerOlder