Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
influxdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
influxdb
Commits
e74982cd
Unverified
Commit
e74982cd
authored
Jun 08, 2020
by
gitirabassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding initial documentation to run istio with telegraf operator
parent
13ed7796
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
132 additions
and
0 deletions
+132
-0
README.md
istio/README.md
+23
-0
istio.yml
istio/istio.yml
+109
-0
No files found.
istio/README.md
0 → 100644
View file @
e74982cd
# Istio Installation with Telegraf-operator
> Warning: this is still a Work in Progress and breaking changes may occurr
This only runs with
`istioctl`
version > 1.5
## Steps:
1.
install istio-operator
```shell
istioctl operator init
```
2.
install telegraf-operator
```shell
helm repo add influxdata https://helm.influxdata.com
helm install --namespace=telegraf-operator telegraf-operator influxdata/telegraf-operator
```
3.
configure telegraf operator with
`istio`
class
> This depends on which output system you desider for the istio metrics
4.
`kubectl apply -f istio.yml`
## Reference:
-
https://istio.io/docs/reference/config/istio.operator.v1alpha1/
istio/istio.yml
0 → 100644
View file @
e74982cd
apiVersion
:
v1
kind
:
Namespace
metadata
:
name
:
istio-system
labels
:
istio-injection
:
disaabled
---
apiVersion
:
v1
kind
:
Namespace
metadata
:
name
:
ingress
---
apiVersion
:
v1
kind
:
Namespace
metadata
:
name
:
egress
---
apiVersion
:
install.istio.io/v1alpha1
kind
:
IstioOperator
metadata
:
namespace
:
istio-system
name
:
complete
spec
:
profile
:
default
meshConfig
:
trustDomain
:
cluster.local
enableTracing
:
true
accessLogFile
:
"
/dev/stdout"
accessLogEncoding
:
JSON
defaultConfig
:
tracing
:
zipkin
:
address
:
"
zipkin.tracing.svc:9411"
sds
:
enabled
:
true
addonComponents
:
grafana
:
enabled
:
false
kiali
:
enabled
:
false
prometheus
:
enabled
:
false
components
:
ingressGateways
:
#https://istio.io/docs/reference/config/istio.operator.v1alpha1/#GatewaySpec
-
enabled
:
true
name
:
public
namespace
:
ingress
label
:
app
:
istio-ingressgateway
istio
:
ingressgatway-public
k8s
:
replicaCount
:
1
service
:
type
:
ClusterIP
ports
:
-
name
:
http
port
:
80
-
name
:
https
port
:
443
podAnnotations
:
telegraf.influxdata.com/port
:
"
14010"
telegraf.influxdata.com/class
:
"
istio"
-
enabled
:
true
name
:
private
namespace
:
ingress
label
:
app
:
istio-ingressgateway
istio
:
ingressgatway-private
k8s
:
replicaCount
:
1
service
:
type
:
ClusterIP
ports
:
-
name
:
http
port
:
80
-
name
:
https
port
:
443
podAnnotations
:
telegraf.influxdata.com/port
:
"
14010"
telegraf.influxdata.com/class
:
"
istio"
egressGateways
:
-
enabled
:
true
name
:
public
namespace
:
egress
label
:
app
:
istio-egressgateway
istio
:
egressgatway-public
k8s
:
replicaCount
:
1
podAnnotations
:
telegraf.influxdata.com/port
:
"
14010"
telegraf.influxdata.com/class
:
"
istio"
-
enabled
:
true
name
:
private
namespace
:
egress
label
:
app
:
istio-egressgateway
istio
:
egressgatway-private
k8s
:
replicaCount
:
1
podAnnotations
:
telegraf.influxdata.com/port
:
"
14010"
telegraf.influxdata.com/class
:
"
istio"
pilot
:
enabled
:
true
k8s
:
podAnnotations
:
telegraf.influxdata.com/port
:
"
14010"
telegraf.influxdata.com/class
:
"
istio"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment