Skip to content

Commit

Permalink
fix minor typos (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfusinigoj committed Jun 28, 2019
1 parent ed600ab commit 8d2af37
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -10,10 +10,10 @@ This package will add a Wcf client interceptor which will injects kerberos ticke
#### Below are the important developer instructions, to follow after installation of this package

1. Add the supply buildpack from [here](https://github.com/cloudfoundry-community/kerberos-auth-egress-buildpack/releases) in the CF manifest (preferably the latest release).
IMPORTANT: Make sure the application is built/published with target platform 'x64'
> IMPORTANT: Make sure the application is built/published with target platform `x64`
2. Follow the [readme](https://github.com/cloudfoundry-community/kerberos-auth-egress-buildpack) to setup the sources for kerberos config and keytab files
For kerberos config template, please [here](https://github.com/cloudfoundry-community/kerberos-auth-egress-wcf-client-interceptor/blob/master/src/RouteServiceIwaWcfInterceptor/krb5.ini)
3. Set the correct client UPN in AppSettings with key 'ClientUserPrincipalName' as below (this section will be already added by the package)
3. Set the correct client UPN in AppSettings with key `ClientUserPrincipalName` as below (this section will be already added by the package)
```xml
<appSettings>
<add key="ClientUserPrincipalName" value="client_username@domain" />
Expand All @@ -25,7 +25,7 @@ This package will add a Wcf client interceptor which will injects kerberos ticke
<add key="ImpersonateClientUser" value="false" />
</appSettings>
```
5. Target service UPN has to be provided in the client/endpoint/identity configuration as in the sample below. If not, system will try to use the SPN 'host/foo.bar' (based on the below sample)
5. Target service UPN has to be provided in the client/endpoint/identity configuration as in the sample below. If not, system will try to use the SPN `host/foo.bar` (based on the below sample)
```xml
<system.serviceModel>
<client>
Expand All @@ -42,7 +42,7 @@ This package will add a Wcf client interceptor which will injects kerberos ticke
</client>
</system.serviceModel>
```
6. To see debug logs, please set the log level to "Debug" or "Trace", via environment variable "PivotalIwaWcfClientInterceptor:LogLevel:Default"
6. To see debug logs, please set the log level to `Debug` or `Trace`, via environment variable `PivotalIwaWcfClientInterceptor:LogLevel:Default`

##### Notes
1. Stable versions are available at [www.nuget.org](https://www.nuget.org/packages/PivotalServices.WcfClient.Kerberos.Interceptor), [nuget feed](https://api.nuget.org/v3/index.json)
Expand Down
1 change: 1 addition & 0 deletions Wcf.Interceptor.Module.sln
Expand Up @@ -14,6 +14,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "solution_items", "solution_items", "{299AF63C-E7EE-421E-BC10-9291EBE66CAA}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
azure-pipelines.yml = azure-pipelines.yml
README.md = README.md
EndProjectSection
EndProject
Expand Down
16 changes: 8 additions & 8 deletions azure-pipelines.yml
Expand Up @@ -42,49 +42,49 @@ steps:
arguments: 'Compile --Configuration $(BuildConfiguration)'

- task: CopyFiles@1
displayName: 'Copy $(NukeFile) into $(Build.ArtifactStagingDirectory)'
displayName: 'Copy $(NukeFile) into staging directory'
inputs:
Contents: $(NukeFile)
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: CopyFiles@1
displayName: 'Copy $(VersionFile) into $(Build.ArtifactStagingDirectory)'
displayName: 'Copy $(VersionFile) into staging directory'
inputs:
Contents: $(VersionFile)
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: CopyFiles@1
displayName: 'Copy $(NukeBuildScript) into $(Build.ArtifactStagingDirectory)'
displayName: 'Copy $(NukeBuildScript) into staging directory'
inputs:
Contents: $(NukeBuildScript)
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: CopyFiles@1
displayName: 'Copy $(SolutionFile) into $(Build.ArtifactStagingDirectory) (just for nuke purposes)'
displayName: 'Copy $(SolutionFile) into staging directory (just for nuke purposes)'
inputs:
Contents: $(SolutionFile)
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: CopyFiles@1
displayName: 'Copy $(SourceDirectory) into $(Build.ArtifactStagingDirectory)'
displayName: 'Copy $(SourceDirectory) into staging directory'
inputs:
Contents: $(SourceDirectory)/**
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: CopyFiles@1
displayName: 'Copy $(NukeBuildDirectory) into $(Build.ArtifactStagingDirectory)'
displayName: 'Copy $(NukeBuildDirectory) into staging directory'
inputs:
Contents: $(NukeBuildDirectory)\**
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: CopyFiles@1
displayName: 'Copy $(GitFolder) into $(Build.ArtifactStagingDirectory) for git release purposes'
displayName: 'Copy $(GitFolder) into staging directory for git release purposes'
inputs:
Contents: $(GitFolder)\**
TargetFolder: $(Build.ArtifactStagingDirectory)

- task: PublishBuildArtifacts@1
displayName: 'Publish Packed Artifacts from $(Build.ArtifactStagingDirectory)'
displayName: 'Publish Packed Artifacts from staging directory'
inputs:
PathtoPublish: $(Build.ArtifactStagingDirectory)
ArtifactName: publish
Expand Down
1 change: 0 additions & 1 deletion build/_build.csproj
Expand Up @@ -26,7 +26,6 @@
<None Include="..\.nuke" />
<None Include="..\global.json" Condition="Exists('..\global.json')" />
<None Include="..\nuget.config" Condition="Exists('..\nuget.config')" />
<None Include="..\azure-pipelines.yml" Condition="Exists('..\azure-pipelines.yml')" />
<None Include="..\Jenkinsfile" Condition="Exists('..\Jenkinsfile')" />
<None Include="..\appveyor.yml" Condition="Exists('..\appveyor.yml')" />
<None Include="..\.travis.yml" Condition="Exists('..\.travis.yml')" />
Expand Down

0 comments on commit 8d2af37

Please sign in to comment.