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
| { | |
| "go.useLanguageServer": true, | |
| // "go.languageServerFlags": [ | |
| // "-rpc.trace", // for more detailed debug logging | |
| // "serve", | |
| // "--debug=localhost:6060", // to investigate memory usage, see profiles | |
| // ], | |
| "go.languageServerExperimentalFeatures": { | |
| "autoComplete": true, | |
| "rename": true, |
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: mesh.cellery.io/v1alpha2 | |
| kind: Cell | |
| metadata: | |
| name: todo-app | |
| spec: | |
| gateway: | |
| spec: | |
| ingress: | |
| extensions: | |
| clusterIngress: |
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: extensions/v1beta1 | |
| kind: Ingress | |
| metadata: | |
| name: todo-app-ingress | |
| spec: | |
| rules: | |
| - host: todo-app.org | |
| http: | |
| paths: | |
| - backend: |
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: | |
| name: todos-service | |
| spec: | |
| ports: | |
| - name: http | |
| port: 80 | |
| protocol: TCP | |
| targetPort: 8080 |
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/v1 | |
| kind: Deployment | |
| metadata: | |
| labels: | |
| app: todos | |
| version: v1.0.0 | |
| name: todos-deployment | |
| spec: | |
| replicas: 1 | |
| selector: |
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 | |
| data: | |
| password: cm9vdA== | |
| username: cm9vdA== | |
| kind: Secret | |
| metadata: | |
| name: todos-db-credentials | |
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: | |
| name: todos-mysql-db-service | |
| spec: | |
| ports: | |
| - name: tcp | |
| port: 3306 | |
| protocol: TCP | |
| targetPort: 3306 |
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/v1 | |
| kind: Deployment | |
| metadata: | |
| name: todos-mysql-db-deployment | |
| spec: | |
| replicas: 1 | |
| selector: | |
| matchLabels: | |
| app: todos-mysql-db | |
| version: v1.0.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
| apiVersion: v1 | |
| data: | |
| init.sql: | | |
| CREATE DATABASE IF NOT EXISTS `todos_db` /*!40100 DEFAULT CHARACTER SET latin1 */; | |
| USE `todos_db`; | |
| -- MySQL dump 10.13 Distrib 5.7.17, for Linux (x86_64) | |
| -- | |
| -- Host: localhost Database: todos_db | |
| -- ------------------------------------------------------ | |
| -- Server version 5.7.27-0ubuntu0.16.04.1 |
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
| --[[ | |
| Conky, a system monitor, based on torsmo | |
| Any original torsmo code is licensed under the BSD license | |
| All code written since the fork of torsmo is licensed under the GPL | |
| Please see COPYING for details | |
| Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen |